add manyuser branch
support udp over tcp support chacha20 & salsa20 (base on libsodium)
This commit is contained in:
parent
e001f1818c
commit
f2efed9608
18 changed files with 1327 additions and 57 deletions
24
shadowsocks.sql
Normal file
24
shadowsocks.sql
Normal file
|
@ -0,0 +1,24 @@
|
|||
SET FOREIGN_KEY_CHECKS=0;
|
||||
|
||||
CREATE TABLE `user` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`email` varchar(32) NOT NULL,
|
||||
`pass` varchar(16) NOT NULL,
|
||||
`passwd` varchar(16) NOT NULL,
|
||||
`t` int(11) NOT NULL DEFAULT '0',
|
||||
`u` bigint(20) NOT NULL,
|
||||
`d` bigint(20) NOT NULL,
|
||||
`transfer_enable` bigint(20) NOT NULL,
|
||||
`port` int(11) NOT NULL,
|
||||
`switch` tinyint(4) NOT NULL DEFAULT '1',
|
||||
`enable` tinyint(4) NOT NULL DEFAULT '1',
|
||||
`type` tinyint(4) NOT NULL DEFAULT '1',
|
||||
`last_get_gift_time` int(11) NOT NULL DEFAULT '0',
|
||||
`last_rest_pass_time` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`,`port`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=415 DEFAULT CHARSET=utf8;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of user
|
||||
-- ----------------------------
|
||||
INSERT INTO `user` VALUES ('7', 'test@test.com', '123456', '0000000', '1410609560', '0', '0', '9320666234', '50000', '1', '1', '7', '0', '0');
|
Loading…
Add table
Add a link
Reference in a new issue