diff options
author | guenther <> | 2014-08-10 07:31:58 +0000 |
---|---|---|
committer | guenther <> | 2014-08-10 07:31:58 +0000 |
commit | f26635d06fdd0bb26d5ee990a796492daaa92b29 (patch) | |
tree | a52bf3a092631c8a10eb5c2e55844171ed3df02d /src/regress/lib/libc/asr | |
parent | f22e58cf0aa3df4801799a602d1b00d6293a8b46 (diff) | |
download | openbsd-f26635d06fdd0bb26d5ee990a796492daaa92b29.tar.gz openbsd-f26635d06fdd0bb26d5ee990a796492daaa92b29.tar.bz2 openbsd-f26635d06fdd0bb26d5ee990a796492daaa92b29.zip |
AF_IMPLINK and AF_BLUETOOTH are gone, but add printing of SOCK_SEQPACKET
Diffstat (limited to 'src/regress/lib/libc/asr')
-rw-r--r-- | src/regress/lib/libc/asr/bin/common.c | 11 |
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 | }; |
63 | struct kv kv_socktype[] = { | 61 | struct 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 | }; |
69 | struct kv kv_protocol[] = { | 68 | struct kv kv_protocol[] = { |