added basic ssl support to ircu
[ircu2.10.12-pk.git] / include / parse.h
1 /** @file parse.h
2  * @brief Declarations for parsing input from users and other servers.
3  * @version $Id$
4  */
5 #ifndef INCLUDED_parse_h
6 #define INCLUDED_parse_h
7
8 struct Client;
9 struct s_map;
10
11 /*
12  * Prototypes
13  */
14
15 extern int parse_client(struct Client *cptr, char *buffer, char *bufend);
16 extern int parse_server(struct Client *cptr, char *buffer, char *bufend);
17 extern void initmsgtree(void);
18
19 extern int register_mapping(struct s_map *map);
20 extern int unregister_mapping(struct s_map *map);
21
22 #endif /* INCLUDED_parse_h */