From: Alan T. DeKok Date: Fri, 4 May 2018 15:18:23 +0000 (-0400) Subject: VMPS packets are small. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0bda4eb104841e6fe0c30475ffbc86de52877213;p=thirdparty%2Ffreeradius-server.git VMPS packets are small. --- diff --git a/src/modules/proto_vmps/proto_vmps_udp.c b/src/modules/proto_vmps/proto_vmps_udp.c index 2cebd5f0d38..66055827a75 100644 --- a/src/modules/proto_vmps/proto_vmps_udp.c +++ b/src/modules/proto_vmps/proto_vmps_udp.c @@ -19,8 +19,8 @@ * @file proto_radius_udp.c * @brief RADIUS handler for UDP. * - * @copyright 2016 The FreeRADIUS server project. - * @copyright 2016 Alan DeKok (aland@deployingradius.com) + * @copyright 2018 The FreeRADIUS server project. + * @copyright 2018 Alan DeKok (aland@deployingradius.com) */ #include #include @@ -92,7 +92,7 @@ static const CONF_PARSER udp_listen_config[] = { { FR_CONF_OFFSET("dynamic_clients", FR_TYPE_BOOL, proto_vmps_udp_t, dynamic_clients) } , { FR_CONF_POINTER("networks", FR_TYPE_SUBSECTION, NULL), .subcs = (void const *) networks_config }, - { FR_CONF_OFFSET("max_packet_size", FR_TYPE_UINT32, proto_vmps_udp_t, max_packet_size), .dflt = "4096" } , + { FR_CONF_OFFSET("max_packet_size", FR_TYPE_UINT32, proto_vmps_udp_t, max_packet_size), .dflt = "1024" } , CONF_PARSER_TERMINATOR };