Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 62fe495

Browse files
committedDec 3, 2014
Create error_no.md
1 parent 66ed57a commit 62fe495

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
 

‎analyses/error_no.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
登陆错误信息
2+
---------------------
3+
```c
4+
#define AUTH_ERR_CODE_CHECK_MAC 0x01
5+
#define AUTH_ERR_CODE_SERVER_BUSY 0x02
6+
#define AUTH_ERR_CODE_WRONG_PASS 0x03
7+
#define AUTH_ERR_CODE_NOT_ENOUGH 0x04
8+
#define AUTH_ERR_CODE_FREEZE_UP 0x05
9+
#define AUTH_ERR_CODE_NOT_ON_THIS_IP 0x07
10+
#define AUTH_ERR_CODE_NOT_ON_THIS_MAC 0x0B
11+
#define AUTH_ERR_CODE_TOO_MUCH_IP 0x14
12+
#define AUTH_ERR_CODE_UPDATE_CLIENT 0x15
13+
#define AUTH_ERR_CODE_NOT_ON_THIS_IP_MAC 0x16
14+
#define AUTH_ERR_CODE_MUST_USE_DHCP 0x17
15+
#define AUTH_ERR_CODE_24 0x18
16+
#define AUTH_ERR_CODE_25 0x19
17+
#define AUTH_ERR_CODE_26 0x1A
18+
#define AUTH_ERR_CODE_27 0x1B
19+
#define AUTH_ERR_CODE_28 0x1C
20+
```
21+
22+
对应客户端中文提示
23+
* 0x01 有人正在使用这个账号,且是有线的方式
24+
* 0x02 服务器繁忙,请稍候重新登录
25+
* 0x03 帐号或密码错误
26+
* 0x04 本帐号的累计时间或流量已超出限制
27+
* 0x05 本帐号暂停使用
28+
* 0x07 IP地址不匹配,本帐号只能在指定IP地址上使用
29+
* 0x0b MAC(物理)地址不匹配,本帐号只能在指定的IP和MAC(物理)地址上使用
30+
* 0x14 本帐IP地址太多
31+
* 0x15 客户端版本不正确
32+
* 0x16 本帐号只能在指定的Mac和IP上使用
33+
* 0x17 你的PC设置了静态IP,请改为动态获取方式(DHCP),然后重新登录
34+
* 0x18 - 0x1c 保留错误信息

0 commit comments

Comments
 (0)
Please sign in to comment.