diff options
Diffstat (limited to 'print-lwapp.c')
-rw-r--r-- | print-lwapp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/print-lwapp.c b/print-lwapp.c index 6e02cd481c0ec..5b8683f76905d 100644 --- a/print-lwapp.c +++ b/print-lwapp.c @@ -12,7 +12,7 @@ * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE. * - * Support for the Light Weight Access Point Protocol as per draft-ohara-capwap-lwapp-04 + * Support for the Light Weight Access Point Protocol as per RFC 5412 * * Original code by Carles Kishimoto <carles.kishimoto@gmail.com> */ @@ -162,8 +162,8 @@ struct lwapp_message_header { void lwapp_control_print(netdissect_options *ndo, - const u_char *pptr, u_int len, int has_ap_ident) { - + const u_char *pptr, u_int len, int has_ap_ident) +{ const struct lwapp_transport_header *lwapp_trans_header; const struct lwapp_control_header *lwapp_control_header; const u_char *tptr; @@ -285,8 +285,8 @@ lwapp_control_print(netdissect_options *ndo, void lwapp_data_print(netdissect_options *ndo, - const u_char *pptr, u_int len) { - + const u_char *pptr, u_int len) +{ const struct lwapp_transport_header *lwapp_trans_header; const u_char *tptr; int tlen; |