X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=include%2Flist.h;h=3d591b635f6a0a65df52d860cc18699ca745896e;hb=refs%2Fheads%2Fupstream-ssl;hp=a400ee29c8e1e30abaa777ccb557b40f50353e33;hpb=87adb627f71f9157a179c5f0c2f59a8e0ef8db1c;p=ircu2.10.12-pk.git diff --git a/include/list.h b/include/list.h index a400ee2..3d591b6 100644 --- a/include/list.h +++ b/include/list.h @@ -26,11 +26,6 @@ struct SLink { struct Channel *chptr; /**< List element as a channel. */ struct ConfItem *aconf; /**< List element as a configuration item. */ char *cp; /**< List element as a string. */ - struct { - char *banstr; /**< Ban hostmask. */ - char *who; /**< Name of client that set the ban. */ - time_t when; /**< Timestamp when ban was added. */ - } ban; /**< List element as a ban. */ } value; /**< Value of list element. */ unsigned int flags; /**< Modifier flags for list element. */ }; @@ -52,7 +47,6 @@ struct DLink { extern void free_link(struct SLink *lp); extern struct SLink *make_link(void); -extern struct SLink *find_user_link(struct SLink *lp, struct Client *ptr); extern void init_list(void); extern struct Client *make_client(struct Client *from, int status); extern void free_connection(struct Connection *con);