From: Perttu Ahola Date: Tue, 18 Oct 2011 00:42:23 +0000 (+0300) Subject: Better handling of SendFailedException in Connection X-Git-Tag: 0.3.dev-20111021~16 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=85002883bd7c2e36613b55b8bec885ce37c3bf18;p=oweals%2Fminetest.git Better handling of SendFailedException in Connection --- diff --git a/src/connection.cpp b/src/connection.cpp index 0f09753bd..623994c4c 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -1104,8 +1104,6 @@ u32 Connection::Receive(u16 &peer_id, u8 *data, u32 datasize) } catch(SendFailedException &e) { - derr_con<<"Receive(): SendFailedException; peer_id=" - <>24; diff --git a/src/socket.h b/src/socket.h index f24947c27..74b5fb643 100644 --- a/src/socket.h +++ b/src/socket.h @@ -97,7 +97,7 @@ public: void setPort(unsigned short port); void print(std::ostream *s) const; void print() const; - std::string serializeString(); + std::string serializeString() const; private: unsigned int m_address; unsigned short m_port;