"Fossies" - the Fresh Open Source Software Archive

Member "netbiff-0.9.18/proto.h" (21 Sep 2003, 307 Bytes) of package /linux/privat/old/netbiff-0.9.18.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 #ifndef PROTO_H
    2 #define PROTO_H
    3 
    4 #include "connection.h"
    5 #include <sys/types.h>
    6 #include <unistd.h>
    7 
    8 void proto_do_io(fd_set *rfds, fd_set *wfds);
    9 void proto_do_conn_input(Connection *c);
   10 void proto_do_conn_output(Connection *c);
   11 void proto_do_poll(void);
   12 void proto_do_retries(void);
   13 
   14 #endif /* PROTO_H */