Browse Source

Fix RADIUS client to cancel IPv6 socket read notifications

Jouni Malinen 15 years ago
parent
commit
2988796257
1 changed files with 6 additions and 0 deletions
  1. 6 0
      src/radius/radius_client.c

+ 6 - 0
src/radius/radius_client.c

@@ -1297,6 +1297,12 @@ void radius_client_deinit(struct radius_client_data *radius)
 		eloop_unregister_read_sock(radius->auth_serv_sock);
 		eloop_unregister_read_sock(radius->auth_serv_sock);
 	if (radius->acct_serv_sock >= 0)
 	if (radius->acct_serv_sock >= 0)
 		eloop_unregister_read_sock(radius->acct_serv_sock);
 		eloop_unregister_read_sock(radius->acct_serv_sock);
+#ifdef CONFIG_IPV6
+	if (radius->auth_serv_sock6 >= 0)
+		eloop_unregister_read_sock(radius->auth_serv_sock6);
+	if (radius->acct_serv_sock6 >= 0)
+		eloop_unregister_read_sock(radius->acct_serv_sock6);
+#endif /* CONFIG_IPV6 */
 
 
 	eloop_cancel_timeout(radius_retry_primary_timer, radius, NULL);
 	eloop_cancel_timeout(radius_retry_primary_timer, radius, NULL);