File: s_ping.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 (16 lines) | stat: -rw-r--r-- 478 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef S_PING_H
#define S_PING_H

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

extern int start_ping(aClient *cptr);
extern void send_ping(aClient *cptr);
extern void read_ping(aClient *cptr);
extern int ping_server(aClient *cptr);
extern int m_uping(aClient *cptr, aClient *sptr, int parc, char *parv[]);
extern void end_ping(aClient *cptr);
extern void cancel_ping(aClient *sptr, aClient *acptr);

#endif /* S_PING_H */