diff options
author | Mike Spengler <mks@FreeBSD.org> | 1999-01-19 23:11:40 +0000 |
---|---|---|
committer | Mike Spengler <mks@FreeBSD.org> | 1999-01-19 23:11:40 +0000 |
commit | cffed8a128f2f96e0ab156e8d8dd26b272ef98f9 (patch) | |
tree | 4af7a4142854dad36b861f945f6e3106a430d201 /sys/netatm/spans | |
parent | bc8fb49115d7fe77ca19826b5ec96b02b4ea864d (diff) | |
download | src-cffed8a128f2f96e0ab156e8d8dd26b272ef98f9.tar.gz src-cffed8a128f2f96e0ab156e8d8dd26b272ef98f9.zip |
Notes
Diffstat (limited to 'sys/netatm/spans')
-rw-r--r-- | sys/netatm/spans/spans_arp.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sys/netatm/spans/spans_arp.c b/sys/netatm/spans/spans_arp.c index a324fc42a404..d2d65e6c3879 100644 --- a/sys/netatm/spans/spans_arp.c +++ b/sys/netatm/spans/spans_arp.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: spans_arp.c,v 1.2 1998/10/31 20:06:56 phk Exp $ + * @(#) $Id: spans_arp.c,v 1.3 1998/12/04 22:54:53 archie Exp $ * */ @@ -44,7 +44,7 @@ #include <netatm/spans/spans_cls.h> #ifndef lint -__RCSID("@(#) $Id: spans_arp.c,v 1.2 1998/10/31 20:06:56 phk Exp $"); +__RCSID("@(#) $Id: spans_arp.c,v 1.3 1998/12/04 22:54:53 archie Exp $"); #endif @@ -1125,6 +1125,13 @@ spansarp_ioctl(code, data, arg1) aip->air_buf_len = buf_len; break; + case AIOCS_INF_ASV: + /* + * Get ARP server information + */ + /* SPANS doesn't have an ARP server */ + break; + default: err = EOPNOTSUPP; } |