source: trunk/minix/servers/inet/generic/ip.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 601 bytes
Line 
1/*
2ip.h
3
4Copyright 1995 Philip Homburg
5*/
6
7#ifndef INET_IP_H
8#define INET_IP_H
9
10/* Prototypes */
11
12struct acc;
13
14void ip_prep ARGS(( void ));
15void ip_init ARGS(( void ));
16int ip_open ARGS(( int port, int srfd,
17 get_userdata_t get_userdata, put_userdata_t put_userdata,
18 put_pkt_t put_pkt, select_res_t select_res ));
19int ip_ioctl ARGS(( int fd, ioreq_t req ));
20int ip_read ARGS(( int fd, size_t count ));
21int ip_write ARGS(( int fd, size_t count ));
22int ip_send ARGS(( int fd, struct acc *data, size_t data_len ));
23
24#endif /* INET_IP_H */
25
26/*
27 * $PchId: ip.h,v 1.8 2005/06/28 14:17:57 philip Exp $
28 */
Note: See TracBrowser for help on using the repository browser.