summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorguenther <>2014-08-10 07:31:58 +0000
committerguenther <>2014-08-10 07:31:58 +0000
commit300962ea0714674cc065b8e16720e04b01654de0 (patch)
treea52bf3a092631c8a10eb5c2e55844171ed3df02d /src
parente3364c77a23e9a6f051879758fc3d0a82a8259ad (diff)
downloadopenbsd-300962ea0714674cc065b8e16720e04b01654de0.tar.gz
openbsd-300962ea0714674cc065b8e16720e04b01654de0.tar.bz2
openbsd-300962ea0714674cc065b8e16720e04b01654de0.zip
AF_IMPLINK and AF_BLUETOOTH are gone, but add printing of SOCK_SEQPACKET
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libc/asr/bin/common.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/regress/lib/libc/asr/bin/common.c b/src/regress/lib/libc/asr/bin/common.c
index 8f2f4515b3..c808c86d61 100644
--- a/src/regress/lib/libc/asr/bin/common.c
+++ b/src/regress/lib/libc/asr/bin/common.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: common.c,v 1.2 2013/03/28 09:36:03 eric Exp $ */ 1/* $OpenBSD: common.c,v 1.3 2014/08/10 07:31:58 guenther Exp $ */
2/* 2/*
3 * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> 3 * Copyright (c) 2012 Eric Faurot <eric@openbsd.org>
4 * 4 *
@@ -56,14 +56,13 @@ struct kv kv_family[] = {
56 { AF_UNIX, "unix" }, 56 { AF_UNIX, "unix" },
57 { AF_INET, "inet" }, 57 { AF_INET, "inet" },
58 { AF_INET6, "inet6" }, 58 { AF_INET6, "inet6" },
59 { AF_IMPLINK, "implink" },
60 { AF_BLUETOOTH, "bluetooth" },
61 { 0, NULL, } 59 { 0, NULL, }
62}; 60};
63struct kv kv_socktype[] = { 61struct kv kv_socktype[] = {
64 { SOCK_STREAM, "stream" }, 62 { SOCK_STREAM, "stream" },
65 { SOCK_DGRAM, "dgram" }, 63 { SOCK_DGRAM, "dgram" },
66 { SOCK_RAW, "raw" }, 64 { SOCK_RAW, "raw" },
65 { SOCK_SEQPACKET, "seqpacket" },
67 { 0, NULL, } 66 { 0, NULL, }
68}; 67};
69struct kv kv_protocol[] = { 68struct kv kv_protocol[] = {