Commit 6ae860ca authored by aligungr's avatar aligungr

L3 RRC/NAS developments

parent 2710380e
...@@ -29,7 +29,6 @@ sessions: ...@@ -29,7 +29,6 @@ sessions:
slice: slice:
sst: 1 sst: 1
sd: 1 sd: 1
emergency: false
# Configured NSSAI for this UE by HPLMN # Configured NSSAI for this UE by HPLMN
configured-nssai: configured-nssai:
......
...@@ -29,7 +29,6 @@ sessions: ...@@ -29,7 +29,6 @@ sessions:
slice: slice:
sst: 0x01 sst: 0x01
sd: 0x010203 sd: 0x010203
emergency: false
# Configured NSSAI for this UE by HPLMN # Configured NSSAI for this UE by HPLMN
configured-nssai: configured-nssai:
......
...@@ -28,8 +28,6 @@ sessions: ...@@ -28,8 +28,6 @@ sessions:
apn: 'internet' apn: 'internet'
slice: slice:
sst: 1 sst: 1
sd: 1
emergency: false
# Configured NSSAI for this UE by HPLMN # Configured NSSAI for this UE by HPLMN
configured-nssai: configured-nssai:
......
...@@ -199,7 +199,7 @@ static nr::ue::UeConfig *ReadConfigYaml() ...@@ -199,7 +199,7 @@ static nr::ue::UeConfig *ReadConfigYaml()
else else
throw std::runtime_error("Invalid PDU session type: " + type); throw std::runtime_error("Invalid PDU session type: " + type);
s.isEmergency = yaml::GetBool(sess, "emergency"); s.isEmergency = false;
result->defaultSessions.push_back(s); result->defaultSessions.push_back(s);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment