├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── LICENSE ├── Makefile.am ├── Makefile.in ├── NEWS ├── README.md ├── aclocal.m4 ├── common ├── NwError.h ├── NwEvt.h ├── NwLog.h ├── NwMem.c ├── NwMem.h ├── NwTypes.h ├── NwUtils.h ├── queue.h └── tree.h ├── configure ├── configure.ac ├── depcomp ├── install-sh ├── missing ├── nw-event ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── depcomp ├── include │ ├── NwEvent.h │ └── queue.h ├── install-sh ├── missing ├── src │ ├── Makefile.am │ ├── Makefile.in │ └── NwEvent.c └── test-app │ ├── Makefile.am │ ├── Makefile.in │ ├── event-test.c │ └── time-test.c ├── nw-gre ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── depcomp ├── include │ ├── NwGreLog.h │ ├── NwGrePrivate.h │ ├── NwGreTrxn.h │ ├── NwGreTunnelEndPoint.h │ ├── queue.h │ └── tree.h ├── install-sh ├── missing ├── shared │ ├── NwGre.h │ ├── NwGreError.h │ ├── NwGreIe.h │ ├── NwGreMsg.h │ ├── NwTypes.h │ └── NwUtils.h ├── src │ ├── Makefile.am │ ├── Makefile.in │ ├── NwGre.c │ ├── NwGreMsg.c │ ├── NwGreTrxn.c │ └── NwGreTunnelEndPoint.c └── test-app │ ├── Makefile.am │ ├── Makefile.in │ └── nw-helloworld │ ├── Makefile.am │ ├── Makefile.in │ ├── NwEvt.h │ ├── NwMiniLogMgrEntity.c │ ├── NwMiniLogMgrEntity.h │ ├── NwMiniTmrMgrEntity.c │ ├── NwMiniTmrMgrEntity.h │ ├── NwMiniUdpEntity.c │ ├── NwMiniUdpEntity.h │ ├── NwMiniUlpEntity.c │ ├── NwMiniUlpEntity.h │ └── helloworld.c ├── nw-gtpv1u ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── depcomp ├── include │ ├── NwGtpv1uLog.h │ ├── NwGtpv1uPrivate.h │ ├── NwGtpv1uTrxn.h │ ├── NwGtpv1uTunnelEndPoint.h │ ├── queue.h │ └── tree.h ├── install-sh ├── missing ├── shared │ ├── NwGtpv1u.h │ ├── NwGtpv1uError.h │ ├── NwGtpv1uIe.h │ ├── NwGtpv1uMsg.h │ ├── NwLog.h │ ├── NwTypes.h │ └── NwUtils.h ├── src │ ├── Makefile.am │ ├── Makefile.in │ ├── NwGtpv1u.c │ ├── NwGtpv1uMsg.c │ ├── NwGtpv1uTrxn.c │ └── NwGtpv1uTunnelEndPoint.c └── test-app │ ├── Makefile.am │ ├── Makefile.in │ └── nw-helloworld │ ├── Makefile.am │ ├── Makefile.in │ ├── NwEvt.h │ ├── NwMiniLogMgrEntity.c │ ├── NwMiniLogMgrEntity.h │ ├── NwMiniTmrMgrEntity.c │ ├── NwMiniTmrMgrEntity.h │ ├── NwMiniUdpEntity.c │ ├── NwMiniUdpEntity.h │ ├── NwMiniUlpEntity.c │ ├── NwMiniUlpEntity.h │ └── helloworld.c ├── nw-gtpv2c ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── depcomp ├── include │ ├── NwGtpv2cLog.h │ ├── NwGtpv2cMsgIeParseInfo.h │ ├── NwGtpv2cPrivate.h │ ├── NwGtpv2cTrxn.h │ ├── NwGtpv2cTunnel.h │ ├── queue.h │ └── tree.h ├── install-sh ├── missing ├── shared │ ├── NwError.h │ ├── NwGtpv2c.h │ ├── NwGtpv2cIe.h │ ├── NwGtpv2cMsg.h │ ├── NwGtpv2cMsgParser.h │ ├── NwLog.h │ ├── NwTypes.h │ └── NwUtils.h ├── src │ ├── Makefile.am │ ├── Makefile.in │ ├── NwGtpv2c.c │ ├── NwGtpv2cMsg.c │ ├── NwGtpv2cMsgIeParseInfo.c │ ├── NwGtpv2cMsgParser.c │ ├── NwGtpv2cTrxn.c │ └── NwGtpv2cTunnel.c └── test-app │ ├── Makefile.am │ ├── Makefile.in │ ├── nw-egtping │ ├── Makefile.am │ ├── Makefile.in │ ├── NwEgtPingMain.c │ ├── NwEvt.h │ ├── NwMiniLogMgrEntity.c │ ├── NwMiniLogMgrEntity.h │ ├── NwMiniTmrMgrEntity.c │ ├── NwMiniTmrMgrEntity.h │ ├── NwMiniUdpEntity.c │ ├── NwMiniUdpEntity.h │ ├── NwMiniUlpEntity.c │ └── NwMiniUlpEntity.h │ └── nw-helloworld │ ├── Makefile.am │ ├── Makefile.in │ ├── NwEvt.h │ ├── NwMiniLogMgrEntity.c │ ├── NwMiniLogMgrEntity.h │ ├── NwMiniTmrMgrEntity.c │ ├── NwMiniTmrMgrEntity.h │ ├── NwMiniUdpEntity.c │ ├── NwMiniUdpEntity.h │ ├── NwMiniUlpEntity.c │ ├── NwMiniUlpEntity.h │ └── helloworld.c ├── nw-ipv4 ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── depcomp ├── include │ ├── NwIpv4Log.h │ ├── NwIpv4Private.h │ ├── NwIpv4TunnelEndPoint.h │ ├── queue.h │ └── tree.h ├── install-sh ├── missing ├── shared │ ├── NwIpv4.h │ ├── NwIpv4Error.h │ ├── NwIpv4Ie.h │ ├── NwIpv4Msg.h │ ├── NwTypes.h │ └── NwUtils.h ├── src │ ├── Makefile.am │ ├── Makefile.in │ ├── NwIpv4.c │ ├── NwIpv4Msg.c │ └── NwIpv4TunnelEndPoint.c └── test-app │ ├── Makefile.am │ ├── Makefile.in │ └── nw-helloworld │ ├── Makefile.am │ ├── Makefile.in │ ├── NwEvt.h │ ├── NwMiniLlpEntity.c │ ├── NwMiniLlpEntity.h │ ├── NwMiniLogMgrEntity.c │ ├── NwMiniLogMgrEntity.h │ ├── NwMiniTmrMgrEntity.c │ ├── NwMiniTmrMgrEntity.h │ ├── NwMiniUlpEntity.c │ ├── NwMiniUlpEntity.h │ └── helloworld.c ├── nw-mme-emu ├── Makefile.am ├── Makefile.in ├── NwMmeDpe.c ├── NwMmeDpe.h ├── NwMmeLog.h ├── NwMmeMain.c ├── NwMmeUe.c ├── NwMmeUe.h ├── NwMmeUeLog.h ├── NwMmeUlp.c └── NwMmeUlp.h ├── nw-sae-gw ├── Makefile.am ├── Makefile.in ├── NwSaeGwDpe.c ├── NwSaeGwDpe.h ├── NwSaeGwLog.h ├── NwSaeGwMain.c ├── NwSaeGwUe.c ├── NwSaeGwUe.h ├── NwSaeGwUeFsm.c ├── NwSaeGwUeFsm.h ├── NwSaeGwUeLog.h ├── NwSaeGwUeState.c ├── NwSaeGwUeState.h ├── NwSaeGwUeStateAwaitPgwCreateSessionRsp.c ├── NwSaeGwUeStateAwaitPgwCreateSessionRsp.h ├── NwSaeGwUeStateAwaitPgwDeleteSessionRsp.c ├── NwSaeGwUeStateAwaitPgwDeleteSessionRsp.h ├── NwSaeGwUeStateAwaitPgwModifyBearerRsp.c ├── NwSaeGwUeStateAwaitPgwModifyBearerRsp.h ├── NwSaeGwUeStateAwaitPgwModifyBearerRsp2.c ├── NwSaeGwUeStateAwaitPgwModifyBearerRsp2.h ├── NwSaeGwUeStateInit.c ├── NwSaeGwUeStateInit.h ├── NwSaeGwUeStatePgwSessionCreated.c ├── NwSaeGwUeStatePgwSessionCreated.h ├── NwSaeGwUeStateSaeSessionCreated.c ├── NwSaeGwUeStateSaeSessionCreated.h ├── NwSaeGwUeStateSaeSessionEstablished.c ├── NwSaeGwUeStateSaeSessionEstablished.h ├── NwSaeGwUeStateSgwSessionCreated.c ├── NwSaeGwUeStateSgwSessionCreated.h ├── NwSaeGwUeStateSgwSessionEstablished.c ├── NwSaeGwUeStateSgwSessionEstablished.h ├── NwSaeGwUlp.c └── NwSaeGwUlp.h ├── nw-sdp ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── depcomp ├── include │ ├── NwSdpFlowContext.h │ ├── NwSdpLog.h │ ├── NwSdpPrivate.h │ ├── queue.h │ └── tree.h ├── install-sh ├── missing ├── shared │ ├── NwLog.h │ ├── NwSdp.h │ ├── NwSdpError.h │ └── NwUtils.h ├── src │ ├── Makefile.am │ ├── Makefile.in │ ├── NwSdp.c │ └── NwSdpFlowContext.c └── test-app │ ├── Makefile.am │ ├── Makefile.in │ └── nw-helloworld │ ├── Makefile.am │ ├── Makefile.in │ ├── NwMiniLogMgrEntity.c │ ├── NwMiniLogMgrEntity.h │ ├── NwMiniTmrMgrEntity.c │ ├── NwMiniTmrMgrEntity.h │ ├── NwMiniUdpEntity.c │ ├── NwMiniUdpEntity.h │ ├── NwMiniUlpEntity.c │ ├── NwMiniUlpEntity.h │ └── helloworld.c └── utils ├── nw-gtpu-if ├── NwGtpv1uIf.c ├── NwGtpv1uIf.h └── NwGtpv1uIfLog.h ├── nw-gtpv2c-if ├── NwGtpv2cIf.c ├── NwGtpv2cIf.h └── NwGtpv2cIfLog.h ├── nw-ippool ├── NwIpv4PoolMgr.c ├── NwIpv4PoolMgr.h └── NwIpv4PoolMgrLog.h ├── nw-ipv4-if ├── NwIpv4If.c ├── NwIpv4If.h └── NwIpv4IfLog.h ├── nw-log ├── NwLogMgr.c └── NwLogMgr.h ├── nw-tmr ├── NwTmrMgr.c └── NwTmrMgr.h └── nw-udp ├── NwUdp.c ├── NwUdp.h └── NwUdpLog.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/README.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /common/NwError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/common/NwError.h -------------------------------------------------------------------------------- /common/NwEvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/common/NwEvt.h -------------------------------------------------------------------------------- /common/NwLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/common/NwLog.h -------------------------------------------------------------------------------- /common/NwMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/common/NwMem.c -------------------------------------------------------------------------------- /common/NwMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/common/NwMem.h -------------------------------------------------------------------------------- /common/NwTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/common/NwTypes.h -------------------------------------------------------------------------------- /common/NwUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/common/NwUtils.h -------------------------------------------------------------------------------- /common/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/common/queue.h -------------------------------------------------------------------------------- /common/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/common/tree.h -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/depcomp -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/install-sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/missing -------------------------------------------------------------------------------- /nw-event/AUTHORS: -------------------------------------------------------------------------------- 1 | Amit Chawre 2 | -------------------------------------------------------------------------------- /nw-event/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-event/COPYING -------------------------------------------------------------------------------- /nw-event/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-event/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-event/INSTALL -------------------------------------------------------------------------------- /nw-event/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-event/Makefile.am -------------------------------------------------------------------------------- /nw-event/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-event/Makefile.in -------------------------------------------------------------------------------- /nw-event/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-event/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-event/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-event/depcomp -------------------------------------------------------------------------------- /nw-event/include/NwEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-event/include/NwEvent.h -------------------------------------------------------------------------------- /nw-event/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-event/include/queue.h -------------------------------------------------------------------------------- /nw-event/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-event/install-sh -------------------------------------------------------------------------------- /nw-event/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-event/missing -------------------------------------------------------------------------------- /nw-event/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-event/src/Makefile.am -------------------------------------------------------------------------------- /nw-event/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-event/src/Makefile.in -------------------------------------------------------------------------------- /nw-event/src/NwEvent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-event/src/NwEvent.c -------------------------------------------------------------------------------- /nw-event/test-app/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-event/test-app/Makefile.am -------------------------------------------------------------------------------- /nw-event/test-app/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-event/test-app/Makefile.in -------------------------------------------------------------------------------- /nw-event/test-app/event-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-event/test-app/event-test.c -------------------------------------------------------------------------------- /nw-event/test-app/time-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-event/test-app/time-test.c -------------------------------------------------------------------------------- /nw-gre/AUTHORS: -------------------------------------------------------------------------------- 1 | Amit Chawre 2 | -------------------------------------------------------------------------------- /nw-gre/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/COPYING -------------------------------------------------------------------------------- /nw-gre/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-gre/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/INSTALL -------------------------------------------------------------------------------- /nw-gre/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/Makefile.am -------------------------------------------------------------------------------- /nw-gre/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/Makefile.in -------------------------------------------------------------------------------- /nw-gre/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-gre/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-gre/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/depcomp -------------------------------------------------------------------------------- /nw-gre/include/NwGreLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/include/NwGreLog.h -------------------------------------------------------------------------------- /nw-gre/include/NwGrePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/include/NwGrePrivate.h -------------------------------------------------------------------------------- /nw-gre/include/NwGreTrxn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/include/NwGreTrxn.h -------------------------------------------------------------------------------- /nw-gre/include/NwGreTunnelEndPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/include/NwGreTunnelEndPoint.h -------------------------------------------------------------------------------- /nw-gre/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/include/queue.h -------------------------------------------------------------------------------- /nw-gre/include/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/include/tree.h -------------------------------------------------------------------------------- /nw-gre/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/install-sh -------------------------------------------------------------------------------- /nw-gre/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/missing -------------------------------------------------------------------------------- /nw-gre/shared/NwGre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/shared/NwGre.h -------------------------------------------------------------------------------- /nw-gre/shared/NwGreError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/shared/NwGreError.h -------------------------------------------------------------------------------- /nw-gre/shared/NwGreIe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/shared/NwGreIe.h -------------------------------------------------------------------------------- /nw-gre/shared/NwGreMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/shared/NwGreMsg.h -------------------------------------------------------------------------------- /nw-gre/shared/NwTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/shared/NwTypes.h -------------------------------------------------------------------------------- /nw-gre/shared/NwUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/shared/NwUtils.h -------------------------------------------------------------------------------- /nw-gre/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/src/Makefile.am -------------------------------------------------------------------------------- /nw-gre/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/src/Makefile.in -------------------------------------------------------------------------------- /nw-gre/src/NwGre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/src/NwGre.c -------------------------------------------------------------------------------- /nw-gre/src/NwGreMsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/src/NwGreMsg.c -------------------------------------------------------------------------------- /nw-gre/src/NwGreTrxn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/src/NwGreTrxn.c -------------------------------------------------------------------------------- /nw-gre/src/NwGreTunnelEndPoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/src/NwGreTunnelEndPoint.c -------------------------------------------------------------------------------- /nw-gre/test-app/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/test-app/Makefile.am -------------------------------------------------------------------------------- /nw-gre/test-app/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/test-app/Makefile.in -------------------------------------------------------------------------------- /nw-gre/test-app/nw-helloworld/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/test-app/nw-helloworld/Makefile.am -------------------------------------------------------------------------------- /nw-gre/test-app/nw-helloworld/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/test-app/nw-helloworld/Makefile.in -------------------------------------------------------------------------------- /nw-gre/test-app/nw-helloworld/NwEvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/test-app/nw-helloworld/NwEvt.h -------------------------------------------------------------------------------- /nw-gre/test-app/nw-helloworld/NwMiniLogMgrEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/test-app/nw-helloworld/NwMiniLogMgrEntity.c -------------------------------------------------------------------------------- /nw-gre/test-app/nw-helloworld/NwMiniLogMgrEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/test-app/nw-helloworld/NwMiniLogMgrEntity.h -------------------------------------------------------------------------------- /nw-gre/test-app/nw-helloworld/NwMiniTmrMgrEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/test-app/nw-helloworld/NwMiniTmrMgrEntity.c -------------------------------------------------------------------------------- /nw-gre/test-app/nw-helloworld/NwMiniTmrMgrEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/test-app/nw-helloworld/NwMiniTmrMgrEntity.h -------------------------------------------------------------------------------- /nw-gre/test-app/nw-helloworld/NwMiniUdpEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/test-app/nw-helloworld/NwMiniUdpEntity.c -------------------------------------------------------------------------------- /nw-gre/test-app/nw-helloworld/NwMiniUdpEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/test-app/nw-helloworld/NwMiniUdpEntity.h -------------------------------------------------------------------------------- /nw-gre/test-app/nw-helloworld/NwMiniUlpEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/test-app/nw-helloworld/NwMiniUlpEntity.c -------------------------------------------------------------------------------- /nw-gre/test-app/nw-helloworld/NwMiniUlpEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/test-app/nw-helloworld/NwMiniUlpEntity.h -------------------------------------------------------------------------------- /nw-gre/test-app/nw-helloworld/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gre/test-app/nw-helloworld/helloworld.c -------------------------------------------------------------------------------- /nw-gtpv1u/AUTHORS: -------------------------------------------------------------------------------- 1 | Amit Chawre 2 | -------------------------------------------------------------------------------- /nw-gtpv1u/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/COPYING -------------------------------------------------------------------------------- /nw-gtpv1u/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-gtpv1u/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/INSTALL -------------------------------------------------------------------------------- /nw-gtpv1u/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/Makefile.am -------------------------------------------------------------------------------- /nw-gtpv1u/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/Makefile.in -------------------------------------------------------------------------------- /nw-gtpv1u/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-gtpv1u/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-gtpv1u/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/depcomp -------------------------------------------------------------------------------- /nw-gtpv1u/include/NwGtpv1uLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/include/NwGtpv1uLog.h -------------------------------------------------------------------------------- /nw-gtpv1u/include/NwGtpv1uPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/include/NwGtpv1uPrivate.h -------------------------------------------------------------------------------- /nw-gtpv1u/include/NwGtpv1uTrxn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/include/NwGtpv1uTrxn.h -------------------------------------------------------------------------------- /nw-gtpv1u/include/NwGtpv1uTunnelEndPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/include/NwGtpv1uTunnelEndPoint.h -------------------------------------------------------------------------------- /nw-gtpv1u/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/include/queue.h -------------------------------------------------------------------------------- /nw-gtpv1u/include/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/include/tree.h -------------------------------------------------------------------------------- /nw-gtpv1u/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/install-sh -------------------------------------------------------------------------------- /nw-gtpv1u/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/missing -------------------------------------------------------------------------------- /nw-gtpv1u/shared/NwGtpv1u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/shared/NwGtpv1u.h -------------------------------------------------------------------------------- /nw-gtpv1u/shared/NwGtpv1uError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/shared/NwGtpv1uError.h -------------------------------------------------------------------------------- /nw-gtpv1u/shared/NwGtpv1uIe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/shared/NwGtpv1uIe.h -------------------------------------------------------------------------------- /nw-gtpv1u/shared/NwGtpv1uMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/shared/NwGtpv1uMsg.h -------------------------------------------------------------------------------- /nw-gtpv1u/shared/NwLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/shared/NwLog.h -------------------------------------------------------------------------------- /nw-gtpv1u/shared/NwTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/shared/NwTypes.h -------------------------------------------------------------------------------- /nw-gtpv1u/shared/NwUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/shared/NwUtils.h -------------------------------------------------------------------------------- /nw-gtpv1u/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/src/Makefile.am -------------------------------------------------------------------------------- /nw-gtpv1u/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/src/Makefile.in -------------------------------------------------------------------------------- /nw-gtpv1u/src/NwGtpv1u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/src/NwGtpv1u.c -------------------------------------------------------------------------------- /nw-gtpv1u/src/NwGtpv1uMsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/src/NwGtpv1uMsg.c -------------------------------------------------------------------------------- /nw-gtpv1u/src/NwGtpv1uTrxn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/src/NwGtpv1uTrxn.c -------------------------------------------------------------------------------- /nw-gtpv1u/src/NwGtpv1uTunnelEndPoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/src/NwGtpv1uTunnelEndPoint.c -------------------------------------------------------------------------------- /nw-gtpv1u/test-app/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/test-app/Makefile.am -------------------------------------------------------------------------------- /nw-gtpv1u/test-app/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/test-app/Makefile.in -------------------------------------------------------------------------------- /nw-gtpv1u/test-app/nw-helloworld/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/test-app/nw-helloworld/Makefile.am -------------------------------------------------------------------------------- /nw-gtpv1u/test-app/nw-helloworld/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/test-app/nw-helloworld/Makefile.in -------------------------------------------------------------------------------- /nw-gtpv1u/test-app/nw-helloworld/NwEvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/test-app/nw-helloworld/NwEvt.h -------------------------------------------------------------------------------- /nw-gtpv1u/test-app/nw-helloworld/NwMiniLogMgrEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/test-app/nw-helloworld/NwMiniLogMgrEntity.c -------------------------------------------------------------------------------- /nw-gtpv1u/test-app/nw-helloworld/NwMiniLogMgrEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/test-app/nw-helloworld/NwMiniLogMgrEntity.h -------------------------------------------------------------------------------- /nw-gtpv1u/test-app/nw-helloworld/NwMiniTmrMgrEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/test-app/nw-helloworld/NwMiniTmrMgrEntity.c -------------------------------------------------------------------------------- /nw-gtpv1u/test-app/nw-helloworld/NwMiniTmrMgrEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/test-app/nw-helloworld/NwMiniTmrMgrEntity.h -------------------------------------------------------------------------------- /nw-gtpv1u/test-app/nw-helloworld/NwMiniUdpEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/test-app/nw-helloworld/NwMiniUdpEntity.c -------------------------------------------------------------------------------- /nw-gtpv1u/test-app/nw-helloworld/NwMiniUdpEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/test-app/nw-helloworld/NwMiniUdpEntity.h -------------------------------------------------------------------------------- /nw-gtpv1u/test-app/nw-helloworld/NwMiniUlpEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/test-app/nw-helloworld/NwMiniUlpEntity.c -------------------------------------------------------------------------------- /nw-gtpv1u/test-app/nw-helloworld/NwMiniUlpEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/test-app/nw-helloworld/NwMiniUlpEntity.h -------------------------------------------------------------------------------- /nw-gtpv1u/test-app/nw-helloworld/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv1u/test-app/nw-helloworld/helloworld.c -------------------------------------------------------------------------------- /nw-gtpv2c/AUTHORS: -------------------------------------------------------------------------------- 1 | Amit Chawre 2 | -------------------------------------------------------------------------------- /nw-gtpv2c/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/COPYING -------------------------------------------------------------------------------- /nw-gtpv2c/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-gtpv2c/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/INSTALL -------------------------------------------------------------------------------- /nw-gtpv2c/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/Makefile.am -------------------------------------------------------------------------------- /nw-gtpv2c/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/Makefile.in -------------------------------------------------------------------------------- /nw-gtpv2c/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-gtpv2c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/README -------------------------------------------------------------------------------- /nw-gtpv2c/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/depcomp -------------------------------------------------------------------------------- /nw-gtpv2c/include/NwGtpv2cLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/include/NwGtpv2cLog.h -------------------------------------------------------------------------------- /nw-gtpv2c/include/NwGtpv2cMsgIeParseInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/include/NwGtpv2cMsgIeParseInfo.h -------------------------------------------------------------------------------- /nw-gtpv2c/include/NwGtpv2cPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/include/NwGtpv2cPrivate.h -------------------------------------------------------------------------------- /nw-gtpv2c/include/NwGtpv2cTrxn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/include/NwGtpv2cTrxn.h -------------------------------------------------------------------------------- /nw-gtpv2c/include/NwGtpv2cTunnel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/include/NwGtpv2cTunnel.h -------------------------------------------------------------------------------- /nw-gtpv2c/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/include/queue.h -------------------------------------------------------------------------------- /nw-gtpv2c/include/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/include/tree.h -------------------------------------------------------------------------------- /nw-gtpv2c/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/install-sh -------------------------------------------------------------------------------- /nw-gtpv2c/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/missing -------------------------------------------------------------------------------- /nw-gtpv2c/shared/NwError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/shared/NwError.h -------------------------------------------------------------------------------- /nw-gtpv2c/shared/NwGtpv2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/shared/NwGtpv2c.h -------------------------------------------------------------------------------- /nw-gtpv2c/shared/NwGtpv2cIe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/shared/NwGtpv2cIe.h -------------------------------------------------------------------------------- /nw-gtpv2c/shared/NwGtpv2cMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/shared/NwGtpv2cMsg.h -------------------------------------------------------------------------------- /nw-gtpv2c/shared/NwGtpv2cMsgParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/shared/NwGtpv2cMsgParser.h -------------------------------------------------------------------------------- /nw-gtpv2c/shared/NwLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/shared/NwLog.h -------------------------------------------------------------------------------- /nw-gtpv2c/shared/NwTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/shared/NwTypes.h -------------------------------------------------------------------------------- /nw-gtpv2c/shared/NwUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/shared/NwUtils.h -------------------------------------------------------------------------------- /nw-gtpv2c/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/src/Makefile.am -------------------------------------------------------------------------------- /nw-gtpv2c/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/src/Makefile.in -------------------------------------------------------------------------------- /nw-gtpv2c/src/NwGtpv2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/src/NwGtpv2c.c -------------------------------------------------------------------------------- /nw-gtpv2c/src/NwGtpv2cMsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/src/NwGtpv2cMsg.c -------------------------------------------------------------------------------- /nw-gtpv2c/src/NwGtpv2cMsgIeParseInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/src/NwGtpv2cMsgIeParseInfo.c -------------------------------------------------------------------------------- /nw-gtpv2c/src/NwGtpv2cMsgParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/src/NwGtpv2cMsgParser.c -------------------------------------------------------------------------------- /nw-gtpv2c/src/NwGtpv2cTrxn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/src/NwGtpv2cTrxn.c -------------------------------------------------------------------------------- /nw-gtpv2c/src/NwGtpv2cTunnel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/src/NwGtpv2cTunnel.c -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/Makefile.am -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/Makefile.in -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-egtping/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-egtping/Makefile.am -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-egtping/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-egtping/Makefile.in -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-egtping/NwEgtPingMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-egtping/NwEgtPingMain.c -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-egtping/NwEvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-egtping/NwEvt.h -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-egtping/NwMiniLogMgrEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-egtping/NwMiniLogMgrEntity.c -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-egtping/NwMiniLogMgrEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-egtping/NwMiniLogMgrEntity.h -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-egtping/NwMiniTmrMgrEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-egtping/NwMiniTmrMgrEntity.c -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-egtping/NwMiniTmrMgrEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-egtping/NwMiniTmrMgrEntity.h -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-egtping/NwMiniUdpEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-egtping/NwMiniUdpEntity.c -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-egtping/NwMiniUdpEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-egtping/NwMiniUdpEntity.h -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-egtping/NwMiniUlpEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-egtping/NwMiniUlpEntity.c -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-egtping/NwMiniUlpEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-egtping/NwMiniUlpEntity.h -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-helloworld/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-helloworld/Makefile.am -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-helloworld/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-helloworld/Makefile.in -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-helloworld/NwEvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-helloworld/NwEvt.h -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-helloworld/NwMiniLogMgrEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-helloworld/NwMiniLogMgrEntity.c -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-helloworld/NwMiniLogMgrEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-helloworld/NwMiniLogMgrEntity.h -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-helloworld/NwMiniTmrMgrEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-helloworld/NwMiniTmrMgrEntity.c -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-helloworld/NwMiniTmrMgrEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-helloworld/NwMiniTmrMgrEntity.h -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-helloworld/NwMiniUdpEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-helloworld/NwMiniUdpEntity.c -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-helloworld/NwMiniUdpEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-helloworld/NwMiniUdpEntity.h -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-helloworld/NwMiniUlpEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-helloworld/NwMiniUlpEntity.c -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-helloworld/NwMiniUlpEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-helloworld/NwMiniUlpEntity.h -------------------------------------------------------------------------------- /nw-gtpv2c/test-app/nw-helloworld/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-gtpv2c/test-app/nw-helloworld/helloworld.c -------------------------------------------------------------------------------- /nw-ipv4/AUTHORS: -------------------------------------------------------------------------------- 1 | Amit Chawre 2 | -------------------------------------------------------------------------------- /nw-ipv4/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/COPYING -------------------------------------------------------------------------------- /nw-ipv4/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-ipv4/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/INSTALL -------------------------------------------------------------------------------- /nw-ipv4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/Makefile.am -------------------------------------------------------------------------------- /nw-ipv4/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/Makefile.in -------------------------------------------------------------------------------- /nw-ipv4/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-ipv4/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-ipv4/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/depcomp -------------------------------------------------------------------------------- /nw-ipv4/include/NwIpv4Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/include/NwIpv4Log.h -------------------------------------------------------------------------------- /nw-ipv4/include/NwIpv4Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/include/NwIpv4Private.h -------------------------------------------------------------------------------- /nw-ipv4/include/NwIpv4TunnelEndPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/include/NwIpv4TunnelEndPoint.h -------------------------------------------------------------------------------- /nw-ipv4/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/include/queue.h -------------------------------------------------------------------------------- /nw-ipv4/include/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/include/tree.h -------------------------------------------------------------------------------- /nw-ipv4/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/install-sh -------------------------------------------------------------------------------- /nw-ipv4/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/missing -------------------------------------------------------------------------------- /nw-ipv4/shared/NwIpv4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/shared/NwIpv4.h -------------------------------------------------------------------------------- /nw-ipv4/shared/NwIpv4Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/shared/NwIpv4Error.h -------------------------------------------------------------------------------- /nw-ipv4/shared/NwIpv4Ie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/shared/NwIpv4Ie.h -------------------------------------------------------------------------------- /nw-ipv4/shared/NwIpv4Msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/shared/NwIpv4Msg.h -------------------------------------------------------------------------------- /nw-ipv4/shared/NwTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/shared/NwTypes.h -------------------------------------------------------------------------------- /nw-ipv4/shared/NwUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/shared/NwUtils.h -------------------------------------------------------------------------------- /nw-ipv4/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/src/Makefile.am -------------------------------------------------------------------------------- /nw-ipv4/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/src/Makefile.in -------------------------------------------------------------------------------- /nw-ipv4/src/NwIpv4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/src/NwIpv4.c -------------------------------------------------------------------------------- /nw-ipv4/src/NwIpv4Msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/src/NwIpv4Msg.c -------------------------------------------------------------------------------- /nw-ipv4/src/NwIpv4TunnelEndPoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/src/NwIpv4TunnelEndPoint.c -------------------------------------------------------------------------------- /nw-ipv4/test-app/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/test-app/Makefile.am -------------------------------------------------------------------------------- /nw-ipv4/test-app/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/test-app/Makefile.in -------------------------------------------------------------------------------- /nw-ipv4/test-app/nw-helloworld/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/test-app/nw-helloworld/Makefile.am -------------------------------------------------------------------------------- /nw-ipv4/test-app/nw-helloworld/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/test-app/nw-helloworld/Makefile.in -------------------------------------------------------------------------------- /nw-ipv4/test-app/nw-helloworld/NwEvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/test-app/nw-helloworld/NwEvt.h -------------------------------------------------------------------------------- /nw-ipv4/test-app/nw-helloworld/NwMiniLlpEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/test-app/nw-helloworld/NwMiniLlpEntity.c -------------------------------------------------------------------------------- /nw-ipv4/test-app/nw-helloworld/NwMiniLlpEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/test-app/nw-helloworld/NwMiniLlpEntity.h -------------------------------------------------------------------------------- /nw-ipv4/test-app/nw-helloworld/NwMiniLogMgrEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/test-app/nw-helloworld/NwMiniLogMgrEntity.c -------------------------------------------------------------------------------- /nw-ipv4/test-app/nw-helloworld/NwMiniLogMgrEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/test-app/nw-helloworld/NwMiniLogMgrEntity.h -------------------------------------------------------------------------------- /nw-ipv4/test-app/nw-helloworld/NwMiniTmrMgrEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/test-app/nw-helloworld/NwMiniTmrMgrEntity.c -------------------------------------------------------------------------------- /nw-ipv4/test-app/nw-helloworld/NwMiniTmrMgrEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/test-app/nw-helloworld/NwMiniTmrMgrEntity.h -------------------------------------------------------------------------------- /nw-ipv4/test-app/nw-helloworld/NwMiniUlpEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/test-app/nw-helloworld/NwMiniUlpEntity.c -------------------------------------------------------------------------------- /nw-ipv4/test-app/nw-helloworld/NwMiniUlpEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/test-app/nw-helloworld/NwMiniUlpEntity.h -------------------------------------------------------------------------------- /nw-ipv4/test-app/nw-helloworld/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-ipv4/test-app/nw-helloworld/helloworld.c -------------------------------------------------------------------------------- /nw-mme-emu/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-mme-emu/Makefile.am -------------------------------------------------------------------------------- /nw-mme-emu/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-mme-emu/Makefile.in -------------------------------------------------------------------------------- /nw-mme-emu/NwMmeDpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-mme-emu/NwMmeDpe.c -------------------------------------------------------------------------------- /nw-mme-emu/NwMmeDpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-mme-emu/NwMmeDpe.h -------------------------------------------------------------------------------- /nw-mme-emu/NwMmeLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-mme-emu/NwMmeLog.h -------------------------------------------------------------------------------- /nw-mme-emu/NwMmeMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-mme-emu/NwMmeMain.c -------------------------------------------------------------------------------- /nw-mme-emu/NwMmeUe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-mme-emu/NwMmeUe.c -------------------------------------------------------------------------------- /nw-mme-emu/NwMmeUe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-mme-emu/NwMmeUe.h -------------------------------------------------------------------------------- /nw-mme-emu/NwMmeUeLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-mme-emu/NwMmeUeLog.h -------------------------------------------------------------------------------- /nw-mme-emu/NwMmeUlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-mme-emu/NwMmeUlp.c -------------------------------------------------------------------------------- /nw-mme-emu/NwMmeUlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-mme-emu/NwMmeUlp.h -------------------------------------------------------------------------------- /nw-sae-gw/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/Makefile.am -------------------------------------------------------------------------------- /nw-sae-gw/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/Makefile.in -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwDpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwDpe.c -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwDpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwDpe.h -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwLog.h -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwMain.c -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUe.c -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUe.h -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeFsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeFsm.c -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeFsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeFsm.h -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeLog.h -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeState.c -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeState.h -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateAwaitPgwCreateSessionRsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateAwaitPgwCreateSessionRsp.c -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateAwaitPgwCreateSessionRsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateAwaitPgwCreateSessionRsp.h -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateAwaitPgwDeleteSessionRsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateAwaitPgwDeleteSessionRsp.c -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateAwaitPgwDeleteSessionRsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateAwaitPgwDeleteSessionRsp.h -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateAwaitPgwModifyBearerRsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateAwaitPgwModifyBearerRsp.c -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateAwaitPgwModifyBearerRsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateAwaitPgwModifyBearerRsp.h -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateAwaitPgwModifyBearerRsp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateAwaitPgwModifyBearerRsp2.c -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateAwaitPgwModifyBearerRsp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateAwaitPgwModifyBearerRsp2.h -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateInit.c -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateInit.h -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStatePgwSessionCreated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStatePgwSessionCreated.c -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStatePgwSessionCreated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStatePgwSessionCreated.h -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateSaeSessionCreated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateSaeSessionCreated.c -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateSaeSessionCreated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateSaeSessionCreated.h -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateSaeSessionEstablished.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateSaeSessionEstablished.c -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateSaeSessionEstablished.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateSaeSessionEstablished.h -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateSgwSessionCreated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateSgwSessionCreated.c -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateSgwSessionCreated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateSgwSessionCreated.h -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateSgwSessionEstablished.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateSgwSessionEstablished.c -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUeStateSgwSessionEstablished.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUeStateSgwSessionEstablished.h -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUlp.c -------------------------------------------------------------------------------- /nw-sae-gw/NwSaeGwUlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sae-gw/NwSaeGwUlp.h -------------------------------------------------------------------------------- /nw-sdp/AUTHORS: -------------------------------------------------------------------------------- 1 | Amit Chawre 2 | -------------------------------------------------------------------------------- /nw-sdp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/COPYING -------------------------------------------------------------------------------- /nw-sdp/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-sdp/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/INSTALL -------------------------------------------------------------------------------- /nw-sdp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/Makefile.am -------------------------------------------------------------------------------- /nw-sdp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/Makefile.in -------------------------------------------------------------------------------- /nw-sdp/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-sdp/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nw-sdp/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/depcomp -------------------------------------------------------------------------------- /nw-sdp/include/NwSdpFlowContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/include/NwSdpFlowContext.h -------------------------------------------------------------------------------- /nw-sdp/include/NwSdpLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/include/NwSdpLog.h -------------------------------------------------------------------------------- /nw-sdp/include/NwSdpPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/include/NwSdpPrivate.h -------------------------------------------------------------------------------- /nw-sdp/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/include/queue.h -------------------------------------------------------------------------------- /nw-sdp/include/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/include/tree.h -------------------------------------------------------------------------------- /nw-sdp/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/install-sh -------------------------------------------------------------------------------- /nw-sdp/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/missing -------------------------------------------------------------------------------- /nw-sdp/shared/NwLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/shared/NwLog.h -------------------------------------------------------------------------------- /nw-sdp/shared/NwSdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/shared/NwSdp.h -------------------------------------------------------------------------------- /nw-sdp/shared/NwSdpError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/shared/NwSdpError.h -------------------------------------------------------------------------------- /nw-sdp/shared/NwUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/shared/NwUtils.h -------------------------------------------------------------------------------- /nw-sdp/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/src/Makefile.am -------------------------------------------------------------------------------- /nw-sdp/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/src/Makefile.in -------------------------------------------------------------------------------- /nw-sdp/src/NwSdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/src/NwSdp.c -------------------------------------------------------------------------------- /nw-sdp/src/NwSdpFlowContext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/src/NwSdpFlowContext.c -------------------------------------------------------------------------------- /nw-sdp/test-app/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/test-app/Makefile.am -------------------------------------------------------------------------------- /nw-sdp/test-app/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/test-app/Makefile.in -------------------------------------------------------------------------------- /nw-sdp/test-app/nw-helloworld/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/test-app/nw-helloworld/Makefile.am -------------------------------------------------------------------------------- /nw-sdp/test-app/nw-helloworld/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/test-app/nw-helloworld/Makefile.in -------------------------------------------------------------------------------- /nw-sdp/test-app/nw-helloworld/NwMiniLogMgrEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/test-app/nw-helloworld/NwMiniLogMgrEntity.c -------------------------------------------------------------------------------- /nw-sdp/test-app/nw-helloworld/NwMiniLogMgrEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/test-app/nw-helloworld/NwMiniLogMgrEntity.h -------------------------------------------------------------------------------- /nw-sdp/test-app/nw-helloworld/NwMiniTmrMgrEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/test-app/nw-helloworld/NwMiniTmrMgrEntity.c -------------------------------------------------------------------------------- /nw-sdp/test-app/nw-helloworld/NwMiniTmrMgrEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/test-app/nw-helloworld/NwMiniTmrMgrEntity.h -------------------------------------------------------------------------------- /nw-sdp/test-app/nw-helloworld/NwMiniUdpEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/test-app/nw-helloworld/NwMiniUdpEntity.c -------------------------------------------------------------------------------- /nw-sdp/test-app/nw-helloworld/NwMiniUdpEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/test-app/nw-helloworld/NwMiniUdpEntity.h -------------------------------------------------------------------------------- /nw-sdp/test-app/nw-helloworld/NwMiniUlpEntity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/test-app/nw-helloworld/NwMiniUlpEntity.c -------------------------------------------------------------------------------- /nw-sdp/test-app/nw-helloworld/NwMiniUlpEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/test-app/nw-helloworld/NwMiniUlpEntity.h -------------------------------------------------------------------------------- /nw-sdp/test-app/nw-helloworld/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/nw-sdp/test-app/nw-helloworld/helloworld.c -------------------------------------------------------------------------------- /utils/nw-gtpu-if/NwGtpv1uIf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-gtpu-if/NwGtpv1uIf.c -------------------------------------------------------------------------------- /utils/nw-gtpu-if/NwGtpv1uIf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-gtpu-if/NwGtpv1uIf.h -------------------------------------------------------------------------------- /utils/nw-gtpu-if/NwGtpv1uIfLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-gtpu-if/NwGtpv1uIfLog.h -------------------------------------------------------------------------------- /utils/nw-gtpv2c-if/NwGtpv2cIf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-gtpv2c-if/NwGtpv2cIf.c -------------------------------------------------------------------------------- /utils/nw-gtpv2c-if/NwGtpv2cIf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-gtpv2c-if/NwGtpv2cIf.h -------------------------------------------------------------------------------- /utils/nw-gtpv2c-if/NwGtpv2cIfLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-gtpv2c-if/NwGtpv2cIfLog.h -------------------------------------------------------------------------------- /utils/nw-ippool/NwIpv4PoolMgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-ippool/NwIpv4PoolMgr.c -------------------------------------------------------------------------------- /utils/nw-ippool/NwIpv4PoolMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-ippool/NwIpv4PoolMgr.h -------------------------------------------------------------------------------- /utils/nw-ippool/NwIpv4PoolMgrLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-ippool/NwIpv4PoolMgrLog.h -------------------------------------------------------------------------------- /utils/nw-ipv4-if/NwIpv4If.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-ipv4-if/NwIpv4If.c -------------------------------------------------------------------------------- /utils/nw-ipv4-if/NwIpv4If.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-ipv4-if/NwIpv4If.h -------------------------------------------------------------------------------- /utils/nw-ipv4-if/NwIpv4IfLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-ipv4-if/NwIpv4IfLog.h -------------------------------------------------------------------------------- /utils/nw-log/NwLogMgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-log/NwLogMgr.c -------------------------------------------------------------------------------- /utils/nw-log/NwLogMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-log/NwLogMgr.h -------------------------------------------------------------------------------- /utils/nw-tmr/NwTmrMgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-tmr/NwTmrMgr.c -------------------------------------------------------------------------------- /utils/nw-tmr/NwTmrMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-tmr/NwTmrMgr.h -------------------------------------------------------------------------------- /utils/nw-udp/NwUdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-udp/NwUdp.c -------------------------------------------------------------------------------- /utils/nw-udp/NwUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-udp/NwUdp.h -------------------------------------------------------------------------------- /utils/nw-udp/NwUdpLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasbhatia/nwEPC---EPC-SAE-Gateway/HEAD/utils/nw-udp/NwUdpLog.h --------------------------------------------------------------------------------