Skip to content

Commit

Permalink
make dialyzer happy
Browse files Browse the repository at this point in the history
  • Loading branch information
RoadRunnr committed Sep 19, 2023
1 parent 975971b commit 2ec7e7c
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions include/pfcp_packet.hrl
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
}).

-record(volume_threshold, {
total :: 0..16#ffffffffffffffff,
uplink :: 0..16#ffffffffffffffff,
downlink :: 0..16#ffffffffffffffff
total :: undefined | 0..16#ffffffffffffffff,
uplink :: undefined | 0..16#ffffffffffffffff,
downlink :: undefined | 0..16#ffffffffffffffff
}).

-record(subsequent_volume_threshold, {
total :: 0..16#ffffffffffffffff,
uplink :: 0..16#ffffffffffffffff,
downlink :: 0..16#ffffffffffffffff
total :: undefined | 0..16#ffffffffffffffff,
uplink :: undefined | 0..16#ffffffffffffffff,
downlink :: undefined | 0..16#ffffffffffffffff
}).

-record(downlink_data_service_information, {
Expand Down Expand Up @@ -89,9 +89,9 @@
}).

-record(volume_quota, {
total :: 0..16#ffffffffffffffff,
uplink :: 0..16#ffffffffffffffff,
downlink :: 0..16#ffffffffffffffff
total :: undefined | 0..16#ffffffffffffffff,
uplink :: undefined | 0..16#ffffffffffffffff,
downlink :: undefined | 0..16#ffffffffffffffff
}).

-record(outer_header_creation, {
Expand Down Expand Up @@ -150,9 +150,9 @@
}).

-record(subsequent_volume_quota, {
total :: 0..16#ffffffffffffffff,
uplink :: 0..16#ffffffffffffffff,
downlink :: 0..16#ffffffffffffffff
total :: undefined | 0..16#ffffffffffffffff,
uplink :: undefined | 0..16#ffffffffffffffff,
downlink :: undefined | 0..16#ffffffffffffffff
}).

-record(mac_address, {
Expand All @@ -169,9 +169,9 @@
}).

-record(s_tag, {
pcp :: 0..16#fff,
dei :: 0..1,
vid :: 0..16#fff
pcp :: undefined | 0..7,
dei :: undefined | 0..1,
vid :: undefined | 0..16#fff
}).

-record(user_id, {
Expand Down

0 comments on commit 2ec7e7c

Please sign in to comment.