Virgin import of NgATM kernel part 1.2

This commit is contained in:
Hartmut Brandt 2005-05-23 13:08:32 +00:00
parent 4e4a36d5f3
commit d32729f62c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/vendor-sys/ngatm/dist/; revision=146539
svn path=/vendor-sys/ngatm/1.2/; revision=146541; tag=vendor/ngatm/1.2
3 changed files with 5 additions and 4 deletions

View File

@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $FreeBSD$
* $Begemot: libunimsg/netnatm/api/ccpriv.h,v 1.2 2005/05/23 11:49:17 brandt_h Exp $
*
* ATM API as defined per af-saa-0108
*

View File

@ -26,8 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Begemot: libunimsg/netnatm/api/unisap.h,v 1.5 2004/07/08 08:22:01 brandt Exp $
* $FreeBSD$
* $Begemot: libunimsg/netnatm/api/unisap.h,v 1.6 2005/05/23 11:49:17 brandt_h Exp $
*/
#ifndef _NETNATM_API_UNISAP_H_
#define _NETNATM_API_UNISAP_H_

View File

@ -26,7 +26,7 @@
*
* Author: Hartmut Brandt <harti@freebsd.org>
*
* $Begemot: libunimsg/netnatm/msg/uni_ie.c,v 1.15 2004/08/05 07:10:59 brandt Exp $
* $Begemot: libunimsg/netnatm/msg/uni_ie.c,v 1.16 2005/05/23 12:06:30 brandt_h Exp $
*
* Private definitions for the IE code file.
*
@ -6235,6 +6235,7 @@ DEF_IE_DECODE(net, called_soft)
if(!vpi_seen) {
ie->vpi = *msg->b_rptr++ << 8;
ie->vpi |= *msg->b_rptr++;
vpi_seen = 1;
} else {
msg->b_rptr += 2;
}
@ -6246,6 +6247,7 @@ DEF_IE_DECODE(net, called_soft)
if(!vci_seen) {
ie->vci = *msg->b_rptr++ << 8;
ie->vci |= *msg->b_rptr++;
vci_seen = 1;
} else {
msg->b_rptr += 2;
}