IPv6 support (hopefully with fewer future transition pains)
[ircu2.10.12-pk.git] / include / numnicks.h
1 /*
2  * IRC - Internet Relay Chat, include/h.h
3  * Copyright (C) 1996 - 1997 Carlo Wood
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2, or (at your option)
8  * any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  *
19  * $Id$
20  */
21 #ifndef INCLUDED_numnicks_h
22 #define INCLUDED_numnicks_h
23 #ifndef INCLUDED_client_h
24 #include "client.h"
25 #endif
26 #ifndef INCLUDED_sys_types_h
27 #include <sys/types.h>
28 #define INCLUDED_sys_types_h
29 #endif
30
31 /*
32  * General defines
33  */
34
35 /*
36  * used for buffer size calculations in channel.c
37  */
38 #define NUMNICKLEN 5            /* strlen("YYXXX") */
39
40 /*
41  * Macros
42  */
43
44 /*
45  * Use this macro as follows: sprintf(buf, "%s%s ...", NumNick(cptr), ...);
46  */
47 #define NumNick(c) cli_yxx((cli_user(c))->server), cli_yxx(c)
48
49 /*
50  * Use this macro as follows: sprintf(buf, "%s ...", NumServ(cptr), ...);
51  */
52 #define NumServ(c) cli_yxx(c)
53
54 /*
55  * Use this macro as follows: sprintf(buf, "%s%s ...", NumServCap(cptr), ...);
56  */
57 #define NumServCap(c) cli_yxx(c), (cli_serv(c))->nn_capacity
58
59 /*
60  * Structures
61  */
62 struct Client;
63
64 /*
65  * Proto types
66  */
67 extern void SetRemoteNumNick(struct Client* cptr, const char* yxx);
68 extern int  SetLocalNumNick(struct Client* cptr);
69 extern void RemoveYXXClient(struct Client* server, const char* yxx);
70 extern void SetServerYXX(struct Client* cptr, 
71                          struct Client* server, const char* yxx);
72 extern void ClearServerYXX(const struct Client* server);
73
74 extern void SetYXXCapacity(struct Client* myself, unsigned int max_clients);
75 extern void SetYXXServerName(struct Client* myself, unsigned int numeric);
76
77 extern int            markMatchexServer(const char* cmask, int minlen);
78 extern struct Client* find_match_server(char* mask);
79 extern struct Client* findNUser(const char* yxx);
80 extern struct Client* FindNServer(const char* numeric);
81
82 extern unsigned int   base64toint(const char* str);
83 extern const char*    inttobase64(char* buf, unsigned int v, unsigned int count);
84 extern const char* iptobase64(char* buf, const struct irc_in_addr* addr, unsigned int count);
85 extern void base64toip(const char* s, struct irc_in_addr* addr);
86
87 #endif /* INCLUDED_numnicks_h */
88