From bc878862fbc4798e04c8409847d74f17bcdc12b3 Mon Sep 17 00:00:00 2001 From: harti Date: Fri, 7 Nov 2003 09:15:14 +0000 Subject: The layer 3 (signalling) of NgATM netgraph node: ng_uni. This node handles user and network side signaling and partly PNNI. --- sys/modules/netgraph/atm/Makefile | 3 ++- sys/modules/netgraph/atm/uni/Makefile | 17 +++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 sys/modules/netgraph/atm/uni/Makefile (limited to 'sys/modules/netgraph') diff --git a/sys/modules/netgraph/atm/Makefile b/sys/modules/netgraph/atm/Makefile index 2297bd5..c8c4d5d 100644 --- a/sys/modules/netgraph/atm/Makefile +++ b/sys/modules/netgraph/atm/Makefile @@ -5,7 +5,8 @@ SUBDIR= \ atmbase \ atmpif \ sscfu \ - sscop + sscop \ + uni .include diff --git a/sys/modules/netgraph/atm/uni/Makefile b/sys/modules/netgraph/atm/uni/Makefile new file mode 100644 index 0000000..57c20b0 --- /dev/null +++ b/sys/modules/netgraph/atm/uni/Makefile @@ -0,0 +1,17 @@ +# $FreeBSD$ +# +# Author: Harti Brandt +# + +LIBBASE= ${.CURDIR}/../../../../contrib/ngatm + +.PATH: ${.CURDIR}/../../../../netgraph/atm/uni +.PATH: ${LIBBASE}/netnatm/sig + +KMOD= ng_uni +SRCS= ng_uni.c sig_call.c sig_uni.c sig_party.c sig_coord.c \ + sig_reset.c sig_verify.c sig_print.c sig_unimsgcpy.c + +CFLAGS+= -I${LIBBASE} -I${LIBBASE}/netnatm/sig # -DUNI_DEBUG + +.include -- cgit v1.1