1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// See the LICENSE file
// Portions Copyright (c) Athena Dev Teams
#ifndef CHAR_PINCODE_H
#define CHAR_PINCODE_H
#include "char.h"
enum PincodeResponseCode {
PINCODE_OK = 0,
PINCODE_ASK = 1,
PINCODE_NOTSET = 2,
PINCODE_EXPIRED = 3,
PINCODE_UNUSED = 7,
PINCODE_WRONG = 8,
};
/**
* pincode interface
**/
struct pincode_interface {
/* vars */
int enabled;
int changetime;
int maxtry;
int charselect;
unsigned int multiplier;
unsigned int baseSeed;
/* handler */
void (*handle) (int fd, struct char_session_data* sd);
void (*decrypt) (unsigned int userSeed, char* pin);
void (*error) (int account_id);
void (*update) (int account_id, char* pin);
void (*sendstate) (int fd, struct char_session_data* sd, uint16 state);
void (*setnew) (int fd, struct char_session_data* sd);
void (*change) (int fd, struct char_session_data* sd);
int (*compare) (int fd, struct char_session_data* sd, char* pin);
void (*check) (int fd, struct char_session_data* sd);
bool (*config_read) (char *w1, char *w2);
};
struct pincode_interface *pincode;
void pincode_defaults(void);
#endif /* CHAR_PINCODE_H */
|