mirror of
https://github.com/Kiritow/LuaEngine.git
synced 2024-03-22 13:11:45 +08:00
12 lines
136 B
C
12 lines
136 B
C
|
#include "include.h"
|
||
|
#include <vector>
|
||
|
|
||
|
class SocketData
|
||
|
{
|
||
|
public:
|
||
|
int fd;
|
||
|
bool nonblocking;
|
||
|
std::vector<char> data;
|
||
|
int buffsz;
|
||
|
};
|