Added php based registration web for Tunnel6 server - especially for free hosting...
[tunnel6.git] / client / src / proto.h
blobaf442da81eef1e498938c50568c9e901682798c5
1 /*
2 * tunnel6
3 * Copyright (C) 2010 Tomas 'ZeXx86' Jedrzejek (zexx86@zexos.org)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef _PROTO_H
21 #define _PROTO_H
23 #define PROTO_MAGIC 0xff
24 #define PROTO_IPV6 0x60
26 #define PROTO_CMD_LOGIN 0x1
27 #define PROTO_CMD_HEARTBEAT 0x2
28 #define PROTO_CMD_DISCONNECT 0x3
30 #define PROTO_CMD_LOGIN_OK 0x1
31 #define PROTO_CMD_LOGIN_FAIL 0x2
32 #define PROTO_CMD_LOGIN_MULTI 0x3
34 extern int proto_login (char *data, char *name, char *pwd);
35 extern int proto_cmd_disconnect2 ();
36 extern int proto_parse (char *data, unsigned len);
38 #endif