File diff r25269:2076c6046659 → r25270:0e1af506fef0
src/network/network_admin.cpp
Show inline comments
 
@@ -560,8 +560,8 @@ NetworkRecvStatus ServerNetworkAdminSock
 
	/* If the length of both strings, plus the 2 '\0' terminations and 3 bytes of the packet
 
	 * are bigger than the MTU, just ignore the message. Better safe than sorry. It should
 
	 * never occur though as the longest strings are chat messages, which are still 30%
 
	 * smaller than SEND_MTU. */
 
	if (strlen(origin) + strlen(string) + 2 + 3 >= SEND_MTU) return NETWORK_RECV_STATUS_OKAY;
 
	 * smaller than COMPAT_MTU. */
 
	if (strlen(origin) + strlen(string) + 2 + 3 >= COMPAT_MTU) return NETWORK_RECV_STATUS_OKAY;
 

	
 
	Packet *p = new Packet(ADMIN_PACKET_SERVER_CONSOLE);
 

	
 
@@ -610,7 +610,7 @@ NetworkRecvStatus ServerNetworkAdminSock
 
	for (uint i = 0; i < CMD_END; i++) {
 
		const char *cmdname = GetCommandName(i);
 

	
 
		/* Should SEND_MTU be exceeded, start a new packet
 
		/* Should COMPAT_MTU be exceeded, start a new packet
 
		 * (magic 5: 1 bool "more data" and one uint16 "command id", one
 
		 * byte for string '\0' termination and 1 bool "no more data" */
 
		if (p->CanWriteToPacket(strlen(cmdname) + 5)) {