File: s_cr.h

package info (click to toggle)
dancer-ircd 1.0.36-8
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze
  • size: 3,204 kB
  • ctags: 2,703
  • sloc: ansic: 36,121; sh: 3,534; perl: 612; makefile: 307
file content (21 lines) | stat: -rw-r--r-- 511 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/************************************************************************
 *   IRC - Internet Relay Chat, include/s_cr.h
 *   April 7. 2001 - einride
 */

#ifndef INCLUDED_s_cr_h
#define INCLUDED_s_cr_h

#include "client.h"
#include "common.h"


#ifdef CHALLENGERESPONSE

void cr_sendchallenge(struct Client * cptr, struct ConfItem * n_conf);
void cr_sendresponse(struct Client * cptr, struct ConfItem * c_conf, char * chall, char* salt);
void cr_gotresponse(struct Client * cptr, char * resp);

#endif

#endif