fdlist is not used, removed it (fixes inclusion into C++)
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@749 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
parent
40968e3c64
commit
7dcf695bee
|
@ -108,18 +108,14 @@ typedef struct {
|
|||
*
|
||||
*/
|
||||
|
||||
typedef struct fdnode {
|
||||
typedef struct _fdnode {
|
||||
fdevent_handler handler;
|
||||
void *ctx;
|
||||
int fd;
|
||||
|
||||
struct fdnode *prev, *next;
|
||||
struct _fdnode *prev, *next;
|
||||
} fdnode;
|
||||
|
||||
typedef struct {
|
||||
fdnode *first, *last;
|
||||
} fdlist;
|
||||
|
||||
typedef struct {
|
||||
int *ptr;
|
||||
|
||||
|
@ -134,7 +130,6 @@ typedef struct {
|
|||
typedef struct fdevents {
|
||||
fdevent_handler_t type;
|
||||
|
||||
fdlist fdlist;
|
||||
fdnode **fdarray;
|
||||
size_t maxfds;
|
||||
|
||||
|
|
Loading…
Reference in New Issue