]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Whitespace and doxygen
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 19 Jun 2017 13:37:06 +0000 (09:37 -0400)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 19 Jun 2017 13:37:06 +0000 (09:37 -0400)
src/modules/proto_radius/proto_radius_auth.c
src/modules/proto_radius/proto_radius_udp.c

index 8e7640c1e9d7d6f2772d9ebb85ec3495b18cd965..8235fe260fe142fef7c367a57a936b2ed6fedb68 100644 (file)
@@ -115,7 +115,6 @@ static void auth_message(char const *msg, REQUEST *request, int goodpass)
                       extra);
 }
 
-
 static void auth_dup_extract(REQUEST *request)
 {
        listen_socket_t *sock = request->listener->data;
@@ -200,7 +199,6 @@ static void auth_cleanup_delay(REQUEST *request, fr_state_action_t action)
        }
 }
 
-
 /** Sit on a request until it's time to respond to it.
  *
  *  For security reasons, rejects (and maybe some other) packets are
@@ -274,7 +272,6 @@ static void auth_reject_delay(REQUEST *request, fr_state_action_t action)
        }
 }
 
-
 static fr_io_final_t auth_process(REQUEST *request)
 {
        VALUE_PAIR *vp, *auth_type;
@@ -856,7 +853,6 @@ static int auth_compile_section(CONF_SECTION *server_cs, char const *name1, char
        return 1;
 }
 
-
 /*
  *     Ensure that the "radius" section is compiled.
  */
index 6a4e6904bc68365b0eb91489b40e8a169b87e39b..4ced499fb08d66d2fa4f5139a2f292e596b3d5b5 100644 (file)
@@ -1,8 +1,4 @@
 /*
- * proto_radius_udp.c  RADIUS handler for UDP
- *
- * Version:    $Id$
- *
  *   This program is free software; you can redistribute it and/or modify
  *   it under the terms of the GNU General Public License as published by
  *   the Free Software Foundation; either version 2 of the License, or
  *   You should have received a copy of the GNU General Public License
  *   along with this program; if not, write to the Free Software
  *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- *
- * Copyright 2016 The FreeRADIUS server project
- * Copyright 2016 Alan DeKok <aland@deployingradius.com>
  */
 
+/**
+ * $Id$
+ * @file proto_radius_udp.c
+ * @brief RADIUS handler for UDP.
+ *
+ * @copyright 2016 The FreeRADIUS server project.
+ * @copyright 2016 Alan DeKok (aland@deployingradius.com)
+ */
 #include <netdb.h>
 #include <freeradius-devel/radiusd.h>
 #include <freeradius-devel/protocol.h>
@@ -141,7 +142,6 @@ static ssize_t mod_read(void const *instance, void **packet_ctx, uint8_t *buffer
        return packet_len;
 }
 
-
 static ssize_t mod_write(void const *instance, void *packet_ctx, uint8_t *buffer, size_t buffer_len)
 {
        fr_proto_radius_udp_t const     *inst = talloc_get_type_abort(instance, fr_proto_radius_udp_t);