X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2FWHOHandler.h;h=ee27779ceff56eac7d31ee5b5957854d76acc0a9;hb=c575e458c6257e75b97884847143b20965a5dfda;hp=31485f82d9eb87436e99939871e2fa4e594337fd;hpb=0f1dc61921eef1db8e404a5a82372e2d1cd55daa;p=NeonServV5.git diff --git a/src/WHOHandler.h b/src/WHOHandler.h index 31485f8..ee27779 100644 --- a/src/WHOHandler.h +++ b/src/WHOHandler.h @@ -1,3 +1,19 @@ +/* WHOHandler.h - NeonServ v5.2 + * Copyright (C) 2011 Philipp Kreil (pk910) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ #ifndef _WHOHandler_h #define _WHOHandler_h @@ -16,7 +32,9 @@ typedef USERAUTH_CALLBACK(userauth_callback_t); void recv_whohandler_354(struct ClientSocket *client, char **argv, unsigned int argc); void recv_whohandler_315(struct ClientSocket *client, char **argv, unsigned int argc); void get_userlist(struct ChanNode *chan, userlist_callback_t callback, void *data); -void get_userlist_with_invisible(struct ChanNode *chan, userlist_callback_t callback, void *data); +#define get_userlist_if_invisible(CHAN, CALLBACK, DATA) _get_userlist_with_invisible(CHAN, CALLBACK, DATA, 0) +#define get_userlist_with_invisible(CHAN, CALLBACK, DATA) _get_userlist_with_invisible(CHAN, CALLBACK, DATA, 1) +void _get_userlist_with_invisible(struct ChanNode *chan, userlist_callback_t callback, void *data, int force); void get_userauth(struct UserNode *user, userauth_callback_t callback, void *data); void free_whoqueue();