From 5f1fd8a5566704f5eec6b2323d070386ed19a214 Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Thu, 21 May 2009 16:01:46 +0200 Subject: [PATCH] Remove some obsolete unused definitions. --- include/client.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/include/client.h b/include/client.h index 6dbb8b5..178a9a3 100644 --- a/include/client.h +++ b/include/client.h @@ -315,12 +315,6 @@ struct ListClient */ }; -struct exit_client_hook -{ - struct Client *client_p; - char exit_message[TOPICLEN]; -}; - /* * status macros. */ @@ -416,7 +410,6 @@ struct exit_client_hook #define FLAGS_SERVICE 0x200000 /* network service */ #define FLAGS_TGCHANGE 0x400000 /* we're allowed to clear something */ #define FLAGS_DYNSPOOF 0x800000 /* dynamic spoof, only opers see ip */ -#define FLAGS_EXUNKNOWN 0x1000000 /* too many unknowns exit.. */ /* flags for local clients, this needs stuff moved from above to here at some point */ #define LFLAGS_SSL 0x00000001 @@ -491,8 +484,6 @@ struct exit_client_hook #define IsDynSpoof(x) ((x)->flags & FLAGS_DYNSPOOF) #define SetDynSpoof(x) ((x)->flags |= FLAGS_DYNSPOOF) #define ClearDynSpoof(x) ((x)->flags &= ~FLAGS_DYNSPOOF) -#define IsExUnknown(x) ((x)->flags & FLAGS_EXUNKNOWN) -#define SetExUnknown(x) ((x)->flags |= FLAGS_EXUNKNOWN) /* local flags */