Please wait until the page is fully downloaded and then press the "Expand" button or the blue line numbers.

0036001 /*
0036002 ip.h
0036003 
0036004 Copyright 1995 Philip Homburg
0036005 */
0036006 
0036007 #ifndef INET_IP_H
0036008 #define INET_IP_H
0036009 
0036010 /* Prototypes */
0036011 
0036012 struct acc;
0036013 
0036014 void ip_prep ARGS(( void ));
0036015 void ip_init ARGS(( void ));
0036016 int ip_open ARGS(( int port, int srfd,
0036017          get_userdata_t get_userdata, put_userdata_t put_userdata,
0036018          put_pkt_t put_pkt ));
0036019 int ip_ioctl ARGS(( int fd, ioreq_t req ));
0036020 int ip_read ARGS(( int fd, size_t count ));
0036021 int ip_write ARGS(( int fd, size_t count ));
0036022 int ip_send ARGS(( int fd, struct acc *data, size_t data_len ));
0036023 
0036024 #endif /* INET_IP_H */
0036025 
0036026 /*
0036027  * $PchId: ip.h,v 1.6 1996/05/07 20:49:28 philip Exp $
0036028  */