Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
cn5g
oai-cn5g-smf
Commits
bd99e507
Commit
bd99e507
authored
Mar 11, 2020
by
Tien-Thinh Nguyen
Browse files
update Readme/Multipartparser
parent
a32a3995
Changes
4
Hide whitespace changes
Inline
Side-by-side
README.txt
View file @
bd99e507
# openair-cn-cups
Control User Plane Separation of SPGW-C and SPGW-U
├── http://www.openairinterface.org/?page_id=698
# openair-cn5g-smf
It is distributed under OAI Public License V1.0.
The license information is distributed under LICENSE file in the same directory.
The OpenAirInterface CN
CUPS
software is composed of the following parts:
The OpenAirInterface CN
SMF
software is composed of the following parts:
openair-cn-cups
├── build : Build directory, contains targets and object files generated by compilation of network functions.
├── log : Directory containing build log files.
├── scripts : Directory containing scripts for building network functions
├── spgw_c : Directory containing CMakefile.txt and object files generated by compilation of SPGW-C network function.
├── spgw_u : Directory containing CMakefile.txt and object files generated by compilation of SPGW-U network function.
├── etc : Directory containing the configuration files to be deployed for each network function.
└── src : Source files of network functions.
├── common : Common header files
│ ├── msg : ITTI messages definitions.
│ └── utils : Common utilities.
├── gtpv1u : Generic GTPV1-U stack implementation
├── gtpv2c : Generic GTPV2-C stack implementation
├── itti : Inter task interface
├── oai_spgwc : SPGW-C main directory, contains the "main" CMakeLists.txt file.
├── oai_spgwu : SPGW-U main directory, contains the "main" CMakeLists.txt file.
├── pfcp : Generic PFCP stack implementation.
├── pgwc : PGW-C network fonctions procedures and contexts.
├── sgwc : SGW-C network fonctions procedures and contexts.
├── spgwu : SPGW-U network fonctions procedures and contexts.
│ └── simpleswitch : Very Basic Switch implementation.
└── udp : UDP server implementation.
RELEASE NOTES:
v1.0.0 -> First release, Able to serve a MME with basic attach, detach, release, paging procedures, default bearer only.
openair-cn5g-smf
├── build: Build directory, contains targets and object files generated by compilation of network functions.
├── log: Directory containing build log files.
├── scripts: Directory containing scripts for building network functions
└── smf: Directory containing CMakefile.txt and object files generated by compilation of SMF network function.
├── etc: Directory containing the configuration file to be deployed for SMF.
└── src: Source files of SMF.
├── common: Common header files
│ ├── msg: ITTI messages definitions.
│ └── utils: Common utilities.
├── gtpv1u: Generic GTPV1-U stack implementation
├── gtpv2c: Generic GTPV2-C stack implementation
├── itti: Inter task interface
├── nas: NAS protocol implememtation
├── mgap: NGAP protocol implememtation
├── oai_smf: SMF main directory, contains the "main" CMakeLists.txt file.
├── pfcp: Generic PFCP stack implementation.
├── smf_app: SMF network functions procedures and contexts.
├── test: Minimal implementation for AMF, UDM network functions for testing purpose.
├── utils: Common utilities.
└── udp : UDP server implementation.
# OAI-SMF
...
...
src/oai_smf/CMakeLists.txt
View file @
bd99e507
...
...
@@ -364,7 +364,6 @@ add_executable(smf
${
SRC_TOP_DIR
}
/oai_smf/options.cpp
${
SRC_TOP_DIR
}
/itti/itti.cpp
${
SRC_TOP_DIR
}
/itti/itti_msg.cpp
${
SRC_TOP_DIR
}
/oai_smf/nas_sm_encode_to_json.c
)
IF
(
STATIC_LINKING
)
...
...
src/utils/multipartparser.c
View file @
bd99e507
...
...
@@ -120,7 +120,6 @@ size_t multipartparser_execute(multipartparser* parser,
for
(
p
=
data
;
p
<
data
+
size
;
++
p
)
{
c
=
*
p
;
reexecute:
switch
(
parser
->
state
)
{
...
...
src/utils/multipartparser.h
View file @
bd99e507
...
...
@@ -116,7 +116,16 @@ static int on_headers_complete(multipartparser* /*parser*/)
static
int
on_data
(
multipartparser
*
/*parser*/
,
const
char
*
data
,
size_t
size
)
{
g_parts
.
back
().
body
.
append
(
data
,
size
);
std
::
string
str
;
//g_parts.back().body.append(data, size);
for
(
int
i
=
0
;
i
<
size
;
i
++
)
{
//printf("%02x ",data[i]);
str
.
push_back
(
data
[
i
]);
}
g_parts
.
back
().
body
.
append
(
str
);
return
0
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment