diff options
Diffstat (limited to 'src/vpn/gnunet-service-vpn.c')
-rw-r--r-- | src/vpn/gnunet-service-vpn.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/vpn/gnunet-service-vpn.c b/src/vpn/gnunet-service-vpn.c index 4759f3746..d9daaa7e2 100644 --- a/src/vpn/gnunet-service-vpn.c +++ b/src/vpn/gnunet-service-vpn.c @@ -1839,7 +1839,7 @@ route_packet (struct DestinationEntry *destination, mlen = sizeof (struct GNUNET_EXIT_UdpServiceMessage) + payload_length - sizeof (struct GNUNET_TUN_UdpHeader); - if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE) + if (mlen >= GNUNET_MAX_MESSAGE_SIZE) { GNUNET_break (0); return; @@ -1864,7 +1864,7 @@ route_packet (struct DestinationEntry *destination, mlen = sizeof (struct GNUNET_EXIT_UdpInternetMessage) + alen + payload_length - sizeof (struct GNUNET_TUN_UdpHeader); - if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE) + if (mlen >= GNUNET_MAX_MESSAGE_SIZE) { GNUNET_break (0); return; @@ -1904,7 +1904,7 @@ route_packet (struct DestinationEntry *destination, mlen = sizeof (struct GNUNET_EXIT_TcpServiceStartMessage) + payload_length - sizeof (struct GNUNET_TUN_TcpHeader); - if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE) + if (mlen >= GNUNET_MAX_MESSAGE_SIZE) { GNUNET_break (0); return; @@ -1927,7 +1927,7 @@ route_packet (struct DestinationEntry *destination, mlen = sizeof (struct GNUNET_EXIT_TcpInternetStartMessage) + alen + payload_length - sizeof (struct GNUNET_TUN_TcpHeader); - if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE) + if (mlen >= GNUNET_MAX_MESSAGE_SIZE) { GNUNET_break (0); return; @@ -1963,7 +1963,7 @@ route_packet (struct DestinationEntry *destination, mlen = sizeof (struct GNUNET_EXIT_TcpDataMessage) + payload_length - sizeof (struct GNUNET_TUN_TcpHeader); - if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE) + if (mlen >= GNUNET_MAX_MESSAGE_SIZE) { GNUNET_break (0); return; @@ -2038,7 +2038,7 @@ route_packet (struct DestinationEntry *destination, /* update length calculations, as payload_length may have changed */ mlen = sizeof (struct GNUNET_EXIT_IcmpServiceMessage) + alen + payload_length - sizeof (struct GNUNET_TUN_IcmpHeader); - if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE) + if (mlen >= GNUNET_MAX_MESSAGE_SIZE) { GNUNET_break (0); return; @@ -2168,7 +2168,7 @@ route_packet (struct DestinationEntry *destination, /* update length calculations, as payload_length may have changed */ mlen = sizeof (struct GNUNET_EXIT_IcmpInternetMessage) + alen + payload_length - sizeof (struct GNUNET_TUN_IcmpHeader); - if (mlen >= GNUNET_SERVER_MAX_MESSAGE_SIZE) + if (mlen >= GNUNET_MAX_MESSAGE_SIZE) { GNUNET_break (0); return; |