Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-Spgwu-Tiny-Simple
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
CommunityXG
OpenXG-Spgwu-Tiny-Simple
Commits
1bacf6bc
Commit
1bacf6bc
authored
May 14, 2019
by
gauthier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug imsi to imsi64 conversion
parent
496955d9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
21 deletions
+34
-21
src/common/3gpp_29.274.h
src/common/3gpp_29.274.h
+34
-21
No files found.
src/common/3gpp_29.274.h
View file @
1bacf6bc
...
...
@@ -395,12 +395,12 @@ struct imsi_s {
{
memset
(
u1
.
b
,
0
,
sizeof
(
u1
.
b
));
}
imsi_s
(
const
imsi_s
&
i
)
:
num_digits
(
i
.
num_digits
)
{
memcpy
(
u1
.
b
,
i
.
u1
.
b
,
sizeof
(
u1
.
b
));
}
std
::
string
toString
()
const
{
std
::
string
s
=
{};
...
...
@@ -425,9 +425,9 @@ struct imsi_s {
{
imsi64_t
imsi64
=
0
;
for
(
int
i
=
0
;
i
<
IMSI_BCD8_SIZE
;
i
++
)
{
uint8_t
d
2
=
u1
.
b
[
i
];
uint8_t
d
1
=
(
d2
&
0xf0
)
>>
4
;
d
2
=
d2
&
0x0f
;
uint8_t
d
1
=
u1
.
b
[
i
];
uint8_t
d
2
=
(
d1
&
0xf0
)
>>
4
;
d
1
=
d1
&
0x0f
;
if
(
10
>
d1
)
{
imsi64
=
imsi64
*
10
+
d1
;
if
(
10
>
d2
)
{
...
...
@@ -441,7 +441,7 @@ struct imsi_s {
}
return
imsi64
;
}
imsi_s
&
operator
++
()
// prefix ++
{
int
l_i
=
IMSI_BCD8_SIZE
-
1
;
...
...
@@ -473,7 +473,7 @@ struct imsi_s {
l_i
++
;
}
return
(
*
this
);
}
}
}
;
typedef
struct
imsi_s
imsi_t
;
...
...
@@ -646,17 +646,17 @@ struct mei_s {
uint8_t
b
[
MEI_MAX_LENGTH
/
2
];
}
u1
;
uint
num_digits
;
mei_s
()
:
num_digits
(
0
)
{
memset
(
u1
.
b
,
0
,
sizeof
(
u1
.
b
));
}
mei_s
(
const
mei_s
&
i
)
:
num_digits
(
i
.
num_digits
)
{
memcpy
(
u1
.
b
,
i
.
u1
.
b
,
sizeof
(
u1
.
b
));
}
std
::
string
toString
()
const
{
std
::
string
s
=
{};
...
...
@@ -675,7 +675,7 @@ struct mei_s {
}
return
s
;
}
mei_s
&
operator
++
()
// prefix ++
{
int
l_i
=
MEI_MAX_LENGTH
/
2
-
1
-
1
;
// depends if imei or imei_sv -1 again
...
...
@@ -707,7 +707,7 @@ struct mei_s {
l_i
++
;
}
return
(
*
this
);
}
}
}
;
typedef
struct
mei_s
mei_t
;
...
...
@@ -736,17 +736,17 @@ struct msisdn_s {
uint8_t
b
[
MSISDN_MAX_LENGTH
/
2
+
1
];
}
u1
;
uint
num_digits
;
msisdn_s
()
:
num_digits
(
0
)
{
memset
(
u1
.
b
,
0
,
sizeof
(
u1
.
b
));
}
msisdn_s
(
const
msisdn_s
&
i
)
:
num_digits
(
i
.
num_digits
)
{
memcpy
(
u1
.
b
,
i
.
u1
.
b
,
sizeof
(
u1
.
b
));
}
std
::
string
toString
()
const
{
std
::
string
s
=
{};
...
...
@@ -765,7 +765,7 @@ struct msisdn_s {
}
return
s
;
}
// Should be refined see spec
msisdn_s
&
operator
++
()
// prefix ++
{
...
...
@@ -798,7 +798,7 @@ struct msisdn_s {
l_i
++
;
}
return
(
*
this
);
}
}
}
;
typedef
struct
msisdn_s
msisdn_t
;
...
...
@@ -1013,7 +1013,7 @@ struct rat_type_s {
rat_type_s
(
const
rat_type_s
&
i
)
:
rat_type
(
i
.
rat_type
)
{}
//------------------------------------------------------------------------------
std
::
string
toString
()
const
{
{
switch
(
rat_type
)
{
case
RAT_TYPE_E_EUTRAN_WB_EUTRAN
:
return
std
::
string
(
"EUTRAN_WB_EUTRAN"
);
case
RAT_TYPE_E_EUTRAN_NB_IOT
:
return
std
::
string
(
"EUTRAN_NB_IOT"
);
...
...
@@ -1028,7 +1028,7 @@ struct rat_type_s {
case
RAT_TYPE_E_HSPA_EVOLUTION
:
return
std
::
string
(
"HSPA_EVOLUTION"
);
default:
return
std
::
to_string
(
rat_type
);
}
}
}
};
typedef
struct
rat_type_s
rat_type_t
;
//-------------------------------------
...
...
@@ -1263,6 +1263,19 @@ struct fully_qualified_tunnel_endpoint_identifier_s {
struct
in_addr
ipv4_address
;
struct
in6_addr
ipv6_address
;
bool
operator
<
(
const
struct
fully_qualified_tunnel_endpoint_identifier_s
&
f
)
const
{
return
(
teid_gre_key
<
f
.
teid_gre_key
)
or
(
ipv4_address
.
s_addr
<
f
.
ipv4_address
.
s_addr
)
or
(
interface_type
<
f
.
interface_type
)
or
(
v4
==
f
.
v4
)
or
(
v6
==
f
.
v6
)
or
(
ipv6_address
.
s6_addr32
[
0
]
==
f
.
ipv6_address
.
s6_addr32
[
0
])
or
(
ipv6_address
.
s6_addr32
[
1
]
==
f
.
ipv6_address
.
s6_addr32
[
1
])
or
(
ipv6_address
.
s6_addr32
[
2
]
==
f
.
ipv6_address
.
s6_addr32
[
2
])
or
(
ipv6_address
.
s6_addr32
[
3
]
==
f
.
ipv6_address
.
s6_addr32
[
3
]);
}
bool
operator
==
(
const
struct
fully_qualified_tunnel_endpoint_identifier_s
&
f
)
const
{
return
(
teid_gre_key
==
f
.
teid_gre_key
)
and
...
...
@@ -2141,8 +2154,8 @@ public:
using
std
::
size_t
;
using
std
::
hash
;
std
::
size_t
h1
=
std
::
hash
<
uint32_t
>
()(
k
.
interface_type
);
std
::
size_t
h2
=
std
::
hash
<
uint32_t
>
()(
k
.
teid_gre_key
)
^
h1
;
std
::
size_t
h2
=
std
::
hash
<
uint32_t
>
()(
k
.
teid_gre_key
)
^
h1
;
if
(
k
.
v4
)
{
h2
^=
std
::
hash
<
uint32_t
>
()(
k
.
ipv4_address
.
s_addr
);
}
...
...
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