From b7d524423c23470cd11e720eeb48368c072838cb Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Tue, 7 Feb 2012 20:49:52 +0000 Subject: Rewritten all packets to use buffers instead of direct sockets, for future cSocketThreads compatibility. Moved data sending from cPacket into cSocket git-svn-id: http://mc-server.googlecode.com/svn/trunk@240 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cBlockingTCPLink.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/cBlockingTCPLink.cpp') diff --git a/source/cBlockingTCPLink.cpp b/source/cBlockingTCPLink.cpp index 5a36536bc..525f6e939 100644 --- a/source/cBlockingTCPLink.cpp +++ b/source/cBlockingTCPLink.cpp @@ -104,7 +104,7 @@ int cBlockingTCPLink::Send(char * a_Data, unsigned int a_Size, int a_Flags /* = LOGERROR("cBlockingTCPLink: Trying to send data without a valid connection!"); return -1; } - return cPacket::SendData( m_Socket, a_Data, a_Size, a_Flags ); + return m_Socket.Send(a_Data, a_Size); } @@ -119,7 +119,7 @@ int cBlockingTCPLink::SendMessage( const char* a_Message, int a_Flags /* = 0 */ LOGWARN("cBlockingTCPLink: Trying to send message without a valid connection!"); return -1; } - return cPacket::SendData( m_Socket, a_Message, strlen(a_Message), a_Flags ); + return m_Socket.Send(a_Message, strlen(a_Message)); } -- cgit v1.2.3