open5gs/README.md

27 lines
736 B
Markdown
Raw Normal View History

2017-07-10 05:33:46 +00:00
NextEPC is an implementation of 3GPP EPC(MME, SGW, PGW, HSS)
2017-02-02 11:34:37 +00:00
2017-03-22 08:03:30 +00:00
The implementation consists in several components:
2017-02-20 01:05:00 +00:00
- lib/core : the library contains the core of the framework.
memory pool, thread, lock, timer, ...
2017-02-20 00:52:42 +00:00
2017-02-20 01:05:00 +00:00
- lib/logger : the logging library
2017-02-20 00:52:42 +00:00
2017-03-05 02:46:42 +00:00
- lib/s1ap : the S1AP message encoding/decoding library
- lib/nas : the NAS message encoding/decoding library
- lib/s6a : the freeDiameter wrapper for S6A
2017-03-30 15:15:13 +00:00
- lib/gtp : the GTPv2-C/GTP-U protocol stack library
2017-03-22 07:59:34 +00:00
2017-03-05 02:46:42 +00:00
- src/mme : the heart of MME protocol stack
- src/hss : the heart of HSS protocol stack
2017-02-20 00:52:42 +00:00
2017-03-30 15:15:13 +00:00
- src/sgw : the heart of SGW protocol stack
- src/pgw : the heart of PGW protocol stack
2017-02-20 00:52:42 +00:00
2017-03-22 08:03:30 +00:00
See INSTALL.md for information on building and using this software.