aboutsummaryrefslogtreecommitdiff
path: root/tests/server/server_sockaddr.h
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2010-11-19 19:20:38 +0100
committerYang Tse <yangsita@gmail.com>2010-11-19 19:20:38 +0100
commita768e39b2d6bd60cbf71e983f1003b22603cb71e (patch)
treee2537d2c144fbff6075499ef0bdc3eb9abd42bd1 /tests/server/server_sockaddr.h
parent1c4fa240bec959fd23f4826d9aa9e624fa48d01a (diff)
test servers: fix strict aliasing compiler warnings
Diffstat (limited to 'tests/server/server_sockaddr.h')
-rw-r--r--tests/server/server_sockaddr.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/server/server_sockaddr.h b/tests/server/server_sockaddr.h
new file mode 100644
index 000000000..e2c059a24
--- /dev/null
+++ b/tests/server/server_sockaddr.h
@@ -0,0 +1,33 @@
+#ifndef HEADER_SERVER_SOCKADDR_H
+#define HEADER_SERVER_SOCKADDR_H
+/***************************************************************************
+ * _ _ ____ _
+ * Project ___| | | | _ \| |
+ * / __| | | | |_) | |
+ * | (__| |_| | _ <| |___
+ * \___|\___/|_| \_\_____|
+ *
+ * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
+ *
+ * This software is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at http://curl.haxx.se/docs/copyright.html.
+ *
+ * You may opt to use, copy, modify, merge, publish, distribute and/or sell
+ * copies of the Software, and permit persons to whom the Software is
+ * furnished to do so, under the terms of the COPYING file.
+ *
+ * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+ * KIND, either express or implied.
+ *
+ ***************************************************************************/
+
+typedef union {
+ struct sockaddr sa;
+ struct sockaddr_in sa4;
+#ifdef ENABLE_IPV6
+ struct sockaddr_in6 sa6;
+#endif
+} srvr_sockaddr_union_t;
+
+#endif /* HEADER_SERVER_SOCKADDR_H */