blob: 86b0e1ea16b17e517b52ede5f7f0ff864026d468 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __LINUX_NET_AFUNIX_H
#define __LINUX_NET_AFUNIX_H
extern void unix_proto_init(struct net_proto *pro);
extern struct proto_ops unix_proto_ops;
extern void unix_inflight(struct file *fp);
extern void unix_notinflight(struct file *fp);
typedef struct sock unix_socket;
extern void unix_gc(void);
extern unix_socket *unix_socket_list;
#define UNIX_MAX_FD 8
#endif
|