]> The Tcpdump Group git mirrors - tcpdump/blobdiff - missing/sockstorage.h
Merge pull request #4 from infrastation/master
[tcpdump] / missing / sockstorage.h
index 557eb4df0aff97f172db091f39c1635d4c9e88c7..e7333289f176f26f6db0e88fb87e2349732b40b4 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1999 WIDE Project.
  * All rights reserved.
- * 
+ *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
@@ -13,7 +13,7 @@
  * 3. Neither the name of the project nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
- * 
+ *
  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  */
 struct sockaddr_storage {
 #ifdef HAVE_SOCKADDR_SA_LEN
-       u_int8_t __ss_len;
-       u_int8_t __ss_family;
+       u_int8_t ss_len;
+       u_int8_t ss_family;
        u_int8_t fill[126];
 #else
-       u_int8_t __ss_family;
+       u_int8_t ss_family;
        u_int8_t fill[127];
 #endif /* HAVE_SOCKADDR_SA_LEN */
 };