Parent Directory | Revision Log
Initial revision
1 | bearsoft | 1.1 | #ifndef __PacketInfo_H__ |
2 | #define __PacketInfo_H__ | ||
3 | |||
4 | #include "../String/String.h" | ||
5 | #include "../System/SystemDefine.h" | ||
6 | |||
7 | class PacketInfo | ||
8 | { | ||
9 | |||
10 | public: | ||
11 | PacketInfo(char *iIP, int iPort, int iSocket, const String &iRequest, const String &iFilePath, const String &iProtocolType); | ||
12 | PacketInfo(); | ||
13 | ~PacketInfo(); | ||
14 | |||
15 | |||
16 | int socket; | ||
17 | |||
18 | String *ip; | ||
19 | String *port; | ||
20 | String *request; | ||
21 | String *filePath; | ||
22 | String *protocolType; | ||
23 | bool inUse; | ||
24 | |||
25 | |||
26 | }; | ||
27 | |||
28 | #endif |
root@recompile.se | ViewVC Help |
Powered by ViewVC 1.1.26 |