]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
remove "track_connections" configuration.
authorAlan T. DeKok <aland@freeradius.org>
Wed, 23 Apr 2025 13:43:19 +0000 (09:43 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 24 Apr 2025 15:45:55 +0000 (11:45 -0400)
TCP sockets are always connected.  UDP sockets cannot really be
connected.  Posix says that UDP packets for that dst IP/port
will always be delivered, no matter what the source port.

src/lib/server/client.c

index 3c9bed08b48a01a6b0f0be71a832195933afcb19..bbf2a2e9b135ae95d51b3f223b61a1c2114dd198 100644 (file)
@@ -438,8 +438,6 @@ static const conf_parser_t client_config[] = {
 
        { FR_CONF_OFFSET("nas_type", fr_client_t, nas_type) },
 
-       { FR_CONF_OFFSET("track_connections", fr_client_t, use_connected) },
-
        { FR_CONF_OFFSET_IS_SET("require_message_authenticator", FR_TYPE_UINT32, 0, fr_client_t, require_message_authenticator),
          .func = cf_table_parse_int,
          .uctx = &(cf_table_parse_ctx_t){ .table = fr_radius_require_ma_table, .len = &fr_radius_require_ma_table_len },