]> git.stg.codes - stg.git/blob - stglibs/srvconf.lib/include/stg/servconf_types.h
d7fb847848ae0d1d44389430783006f630cd06d1
[stg.git] / stglibs / srvconf.lib / include / stg / servconf_types.h
1 /*
2  *    This program is free software; you can redistribute it and/or modify
3  *    it under the terms of the GNU General Public License as published by
4  *    the Free Software Foundation; either version 2 of the License, or
5  *    (at your option) any later version.
6  *
7  *    This program is distributed in the hope that it will be useful,
8  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *    GNU General Public License for more details.
11  *
12  *    You should have received a copy of the GNU General Public License
13  *    along with this program; if not, write to the Free Software
14  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15  */
16
17 /*
18  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
19  */
20
21 #ifndef __STG_STGLIBS_SRVCONF_TYPES_H__
22 #define __STG_STGLIBS_SRVCONF_TYPES_H__
23
24 #define  STG_HEADER     "SG04"
25 #define  OK_HEADER      "OKHD"
26 #define  ERR_HEADER     "ERHD"
27 #define  OK_LOGIN       "OKLG"
28 #define  ERR_LOGIN      "ERLG"
29 #define  OK_LOGINS      "OKLS"
30 #define  ERR_LOGINS     "ERLS"
31
32 #define  ENC_MSG_LEN    (8)
33
34 enum status
35 {
36 st_ok = 0,
37 st_conn_fail,
38 st_send_fail,
39 st_recv_fail,
40 st_header_err,
41 st_login_err,
42 st_logins_err,
43 st_data_err,
44 st_unknown_err,
45 st_dns_err,
46 st_xml_parse_error,
47 st_data_error
48 };
49
50 enum CONF_STATE
51 {
52 confHdr = 0,
53 confLogin,
54 confLoginCipher,
55 confData
56 };
57
58 #endif