blob: f98f72c61e275ca28533b3259fc871c3a9714f30 [file] [log] [blame]
Harald Welte52b1f982008-12-23 20:25:15 +00001#ifndef _BSC_SELECT_H
2#define _BSC_SELECT_H
3
4#define BSC_FD_READ 0x0001
5#define BSC_FD_WRITE 0x0002
6#define BSC_FD_EXCEPT 0x0004
7
8struct bsc_fd {
9 struct llist_head list;
10 int fd;
11 unsigned int when;
12 int (*cb)(struct bsc_fd *fd, unsigned int what);
13 void *data;
14 unsigned int priv_nr;
15};
16
17#endif /* _BSC_SELECT_H */