aboutsummaryrefslogtreecommitdiff
path: root/tryip6.c
diff options
context:
space:
mode:
Diffstat (limited to 'tryip6.c')
-rw-r--r--tryip6.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/tryip6.c b/tryip6.c
new file mode 100644
index 0000000..e0d7cfb
--- /dev/null
+++ b/tryip6.c
@@ -0,0 +1,8 @@
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+
+main() {
+ struct sockaddr_in6 sa;
+ sa.sin6_family = PF_INET6;
+}