diff options
Diffstat (limited to 'src/common/socket.h')
-rw-r--r-- | src/common/socket.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/common/socket.h b/src/common/socket.h index f7309f6d3..93a5dd796 100644 --- a/src/common/socket.h +++ b/src/common/socket.h @@ -152,12 +152,6 @@ void set_eof(int fd); #define SEND_SHORTLIST #ifdef SEND_SHORTLIST -struct send_shortlist_node { - struct send_shortlist_node *next; // Next node in the linked list - struct send_shortlist_node *prev; // Previous node in the linked list - int fd; // FD that needs sending. -}; - // Add a fd to the shortlist so that it'll be recognized as a fd that needs // sending done on it. void send_shortlist_add_fd(int fd); |