File: IPcheck.h

package info (click to toggle)
ircd 2.10.04-2
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,248 kB
  • ctags: 2,145
  • sloc: ansic: 26,591; makefile: 666; sh: 418; perl: 18
file content (15 lines) | stat: -rw-r--r-- 495 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef IPCHECK_H
#define IPCHECK_H

/*=============================================================================
 * Proto types
 */

extern int IPcheck_local_connect(aClient *cptr);
extern void IPcheck_connect_fail(aClient *cptr);
extern void IPcheck_connect_succeeded(aClient *cptr);
extern int IPcheck_remote_connect(aClient *cptr, const char *hostname, int is_burst);
extern void IPcheck_disconnect(aClient *cptr);
extern unsigned short IPcheck_nr(aClient *cptr);

#endif /* IPCHECK_H */