blob: 2912b8dfa4fc3bee8ada856e75091bc02c20cc9b (
plain)
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
|
#ifndef _IDENTIFY_PROC_H_
#define _IDENTIFY_PROC_H_
#define DNTY_PPROJECT_TYPE "struct"
#define DNTY_PPROJECT_AREA "PPROJECT_AREA"
#define DNTY_PPROJECT_PRO "PPROJECT_PRO"
#define DNTY_AREA_OUTSIDE 700000
#define DNTY_AREA_UNKONW 0
typedef struct _dnty_area_info
{
unsigned int client_area;
unsigned int server_area;
}stDntyAreaInfo;
typedef struct _dnty_protocol_info
{
unsigned char trans_proto;
unsigned char communicate_mode:7;
unsigned char v6:1;
unsigned short protocol_type;
unsigned short application_class;
unsigned char cmd_type;
unsigned char reserved;
}stDntyProInfo;
#endif
|