diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-03-17 18:13:55 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-03-17 18:13:55 +0100 |
commit | 17d34d5e094c2f8a90717b07e3a711d6e2c15903 (patch) | |
tree | 777b5323145a5f4d1f044da29a682799008a11d4 /src/vpn/gnunet-service-vpn.c | |
parent | 3391977e3f92a2ebcafc14ea6374aecd580df873 (diff) |
more renamings relating to 'new' service now just being the 'normal' service
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 4759f37466..d9daaa7e21 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; |