[#510] fix the PFD management request

This commit is contained in:
Sukchan Lee 2020-07-23 13:47:41 -04:00
parent 96396739af
commit ff56388b3e
4 changed files with 5 additions and 7 deletions

View File

@ -20,7 +20,7 @@
/*******************************************************************************
* This file had been created by pfcp-tlv.py script v0.1.0
* Please do not modify this file but regenerate it via script.
* Created on: 2020-07-17 20:36:05.513686 by acetcom
* Created on: 2020-07-23 13:41:55.927459 by acetcom
* from 29244-g10.docx
******************************************************************************/
@ -2413,7 +2413,7 @@ ogs_tlv_desc_t ogs_pfcp_msg_desc_pfcp_pfd_management_request =
OGS_TLV_MESSAGE,
"PFCP PFD Management Request",
0, 0, 0, 0, {
&ogs_pfcp_tlv_desc_pfd_context,
&ogs_pfcp_tlv_desc_application_id_s_pfds,
NULL,
}};

View File

@ -20,7 +20,7 @@
/*******************************************************************************
* This file had been created by pfcp-tlv.py script v0.1.0
* Please do not modify this file but regenerate it via script.
* Created on: 2020-07-17 20:36:05.504399 by acetcom
* Created on: 2020-07-23 13:41:55.918372 by acetcom
* from 29244-g10.docx
******************************************************************************/
@ -1091,7 +1091,7 @@ typedef struct ogs_pfcp_heartbeat_response_s {
} ogs_pfcp_heartbeat_response_t;
typedef struct ogs_pfcp_pfd_management_request_s {
ogs_pfcp_tlv_pfd_context_t application_id_s_pfds;
ogs_pfcp_tlv_application_id_s_pfds_t application_id_s_pfds;
} ogs_pfcp_pfd_management_request_t;
typedef struct ogs_pfcp_pfd_management_response_s {

View File

@ -1,3 +1,3 @@
ies = []
ies.append({ "ie_type" : "PFD context", "ie_value" : "Application ID's PFDs", "presence" : "C", "tlv_more" : "0", "comment" : "This IE shall contain an Application Identifier and the associated PFDs to be provisioned in the UP function.Several IEs with the same IE type may be present to provision PFDs for multiple Application IDs.The UP function shall delete all the PFDs received and stored earlier for all the Application IDs if this IE is absent in the message."})
ies.append({ "ie_type" : "Application ID's PFDs", "ie_value" : "Application ID's PFDs", "presence" : "C", "tlv_more" : "0", "comment" : "This IE shall contain an Application Identifier and the associated PFDs to be provisioned in the UP function.Several IEs with the same IE type may be present to provision PFDs for multiple Application IDs.The UP function shall delete all the PFDs received and stored earlier for all the Application IDs if this IE is absent in the message."})
msg_list[key]["ies"] = ies

View File

@ -125,8 +125,6 @@ def get_cells(cells):
if ie_type.find('PFD Contents') != -1:
ie_type = 'PFD contents'
elif ie_type.find('PFD') != -1:
ie_type = 'PFD context'
elif ie_type.find('UE IP address') != -1:
ie_type = 'UE IP Address'
elif ie_type.find('SxSMReq-Flags') != -1: