open5gs/src/udm/nudr-build.h

50 lines
1.6 KiB
C
Raw Permalink Normal View History

2019-07-11 12:53:54 +00:00
/*
* 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/>.
*/
2020-06-04 18:12:05 +00:00
#ifndef UDM_NUDR_BUILD_H
#define UDM_NUDR_BUILD_H
2017-03-06 13:47:39 +00:00
2020-06-04 18:12:05 +00:00
#include "context.h"
2017-03-06 13:47:39 +00:00
2020-06-04 18:12:05 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2017-03-07 00:30:12 +00:00
2020-06-22 03:07:14 +00:00
ogs_sbi_request_t *udm_nudr_dr_build_authentication_subscription(
2020-06-17 05:22:28 +00:00
udm_ue_t *udm_ue, void *data);
2020-06-22 03:07:14 +00:00
ogs_sbi_request_t *udm_nudr_dr_build_query_subscription_provisioned(
2020-06-17 05:22:28 +00:00
udm_ue_t *udm_ue, void *data);
2020-06-22 03:07:14 +00:00
ogs_sbi_request_t *udm_nudr_dr_build_update_authentication_status(
2020-06-17 05:22:28 +00:00
udm_ue_t *udm_ue, void *data);
2020-06-22 03:07:14 +00:00
ogs_sbi_request_t *udm_nudr_dr_build_update_amf_context(
2020-06-17 05:22:28 +00:00
udm_ue_t *udm_ue, void *data);
ogs_sbi_request_t *udm_nudr_dr_build_patch_amf_context(
udm_ue_t *udm_ue, void *data);
2017-03-06 13:47:39 +00:00
ogs_sbi_request_t *udm_nudr_dr_build_update_smf_context(
udm_sess_t *sess, void *data);
ogs_sbi_request_t *udm_nudr_dr_build_delete_smf_context(
udm_sess_t *sess, void *data);
2020-06-04 18:12:05 +00:00
#ifdef __cplusplus
}
#endif
2017-09-12 01:41:00 +00:00
2020-06-04 18:12:05 +00:00
#endif /* UDM_NUDR_BUILD_H */