update it

This commit is contained in:
Sukchan Lee
2021-05-27 16:56:51 +09:00
parent 25507e4dfa
commit 02e464697f
4 changed files with 162 additions and 0 deletions

45
src/pcf/namf-build.c Normal file
View File

@@ -0,0 +1,45 @@
/*
* Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
*
* This file is part of Open5GS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "namf-build.h"
ogs_sbi_request_t *pcf_namf_callback_build_am_policy_control(
pcf_ue_t *pcf_ue, void *data)
{
ogs_sbi_message_t message;
ogs_sbi_request_t *request = NULL;
OpenAPI_policy_update_t PolicyUpdate;
ogs_assert(pcf_ue);
ogs_assert(pcf_ue->notification_uri);
memset(&PolicyUpdate, 0, sizeof(PolicyUpdate));
memset(&message, 0, sizeof(message));
message.h.method = (char *)OGS_SBI_HTTP_METHOD_POST;
message.h.uri = pcf_ue->notification_uri;
message.PolicyUpdate = &PolicyUpdate;
request = ogs_sbi_build_request(&message);
ogs_assert(request);
return request;
}

36
src/pcf/namf-build.h Normal file
View File

@@ -0,0 +1,36 @@
/*
* Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
*
* This file is part of Open5GS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef PCF_NAMF_BUILD_H
#define PCF_NAMF_BUILD_H
#include "context.h"
#ifdef __cplusplus
extern "C" {
#endif
ogs_sbi_request_t *pcf_namf_callback_build_am_policy_control(
pcf_ue_t *pcf_ue, void *data);
#ifdef __cplusplus
}
#endif
#endif /* PCF_NAMF_BUILD_H */

45
src/pcf/nsmf-build.c Normal file
View File

@@ -0,0 +1,45 @@
/*
* Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
*
* This file is part of Open5GS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "nsmf-build.h"
ogs_sbi_request_t *pcf_nsmf_callback_build_smpolicycontrol(
pcf_sess_t *sess, void *data)
{
ogs_sbi_message_t message;
ogs_sbi_request_t *request = NULL;
OpenAPI_sm_policy_notification_t SmPolicyNotification;
ogs_assert(sess);
ogs_assert(sess->notification_uri);
memset(&SmPolicyNotification, 0, sizeof(SmPolicyNotification));
memset(&message, 0, sizeof(message));
message.h.method = (char *)OGS_SBI_HTTP_METHOD_POST;
message.h.uri = sess->notification_uri;
message.SmPolicyNotification = &SmPolicyNotification;
request = ogs_sbi_build_request(&message);
ogs_assert(request);
return request;
}

36
src/pcf/nsmf-build.h Normal file
View File

@@ -0,0 +1,36 @@
/*
* Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
*
* This file is part of Open5GS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef PCF_NSMF_BUILD_H
#define PCF_NSMF_BUILD_H
#include "context.h"
#ifdef __cplusplus
extern "C" {
#endif
ogs_sbi_request_t *pcf_nsmf_callback_build_smpolicycontrol(
pcf_sess_t *sess, void *data);
#ifdef __cplusplus
}
#endif
#endif /* PCF_NSMF_BUILD_H */