diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-08-10 07:31:59 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-08-10 07:31:59 +0000 |
commit | ec87a36a2768640f4cdccee562326fe3449660e2 (patch) | |
tree | a32103b499aa42c1aec2276f3017a418b612a80b /regress/lib | |
parent | 0451423fc37648461ed8b9f963ab66d3431558e9 (diff) |
AF_IMPLINK and AF_BLUETOOTH are gone, but add printing of SOCK_SEQPACKET
Diffstat (limited to 'regress/lib')
-rw-r--r-- | regress/lib/libc/asr/bin/common.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/regress/lib/libc/asr/bin/common.c b/regress/lib/libc/asr/bin/common.c index 8f2f4515b3f..c808c86d618 100644 --- a/regress/lib/libc/asr/bin/common.c +++ b/regress/lib/libc/asr/bin/common.c @@ -1,4 +1,4 @@ -/* $OpenBSD: common.c,v 1.2 2013/03/28 09:36:03 eric Exp $ */ +/* $OpenBSD: common.c,v 1.3 2014/08/10 07:31:58 guenther Exp $ */ /* * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> * @@ -56,14 +56,13 @@ struct kv kv_family[] = { { AF_UNIX, "unix" }, { AF_INET, "inet" }, { AF_INET6, "inet6" }, - { AF_IMPLINK, "implink" }, - { AF_BLUETOOTH, "bluetooth" }, { 0, NULL, } }; struct kv kv_socktype[] = { - { SOCK_STREAM, "stream" }, - { SOCK_DGRAM, "dgram" }, - { SOCK_RAW, "raw" }, + { SOCK_STREAM, "stream" }, + { SOCK_DGRAM, "dgram" }, + { SOCK_RAW, "raw" }, + { SOCK_SEQPACKET, "seqpacket" }, { 0, NULL, } }; struct kv kv_protocol[] = { |