diff options
author | harti <harti@FreeBSD.org> | 2003-07-25 07:16:28 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2003-07-25 07:16:28 +0000 |
commit | 312312b22786ad97f42690b28364eda3b7af9a61 (patch) | |
tree | 0fd2de9e966370d01a327e6b286787518fc6cc75 /sys/netatm | |
parent | 0ab49b29f841747dfc40bab6581e10b2229c713d (diff) | |
download | FreeBSD-src-312312b22786ad97f42690b28364eda3b7af9a61.zip FreeBSD-src-312312b22786ad97f42690b28364eda3b7af9a61.tar.gz |
Set the interface type of the network interfaces to IFT_IPOVERATM(114).
This is specified by RFC2320.
Diffstat (limited to 'sys/netatm')
-rw-r--r-- | sys/netatm/atm_if.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netatm/atm_if.c b/sys/netatm/atm_if.c index c8f7065..7010d13 100644 --- a/sys/netatm/atm_if.c +++ b/sys/netatm/atm_if.c @@ -516,7 +516,7 @@ atm_physif_ioctl(code, data, arg) /* * Set if_type and if_baudrate */ - ifp->if_type = IFT_ATM; + ifp->if_type = IFT_IPOVERATM; switch ( cup->cu_config.ac_media ) { case MEDIA_TAXI_100: ifp->if_baudrate = 100000000; |