REVERT.
This commit is contained in:
@@ -1173,11 +1173,11 @@ netprot::Packet netprot::makePack(void* ptr, PACKET_TYPE type) {
|
||||
}
|
||||
|
||||
void netprot::recvPacks(SOCKET sock, Buffer* buf, std::vector<char*>* lsPck) {
|
||||
int len = 0,//buf->tmp ? buf->tmp - buf->ptr : 0,
|
||||
int len = buf->tmp ? buf->tmp - buf->ptr : 0,
|
||||
end = 0;
|
||||
char* cursor = nullptr,//buf->tmp ? buf->tmp : nullptr,
|
||||
* next = buf->ptr,//buf->tmp ? buf->tmp + 1 : buf->ptr,
|
||||
* last = buf->ptr;//buf->tmp ? buf->tmp : buf->ptr;
|
||||
char* cursor = buf->tmp ? buf->tmp : nullptr,
|
||||
* next = buf->tmp ? buf->tmp + 1 : buf->ptr,
|
||||
* last = buf->tmp ? buf->tmp : buf->ptr;
|
||||
bool ended = true;
|
||||
struct pollfd fds[1];
|
||||
|
||||
|
Reference in New Issue
Block a user