open5gs/src/pcf/naf-build.c

49 lines
1.4 KiB
C

/*
* 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 "naf-build.h"
ogs_sbi_request_t *pcf_naf_callback_build_policyauthorization_terminate(
pcf_app_t *app_session, void *data)
{
ogs_sbi_message_t message;
ogs_sbi_request_t *request = NULL;
ogs_assert(app_session);
memset(&message, 0, sizeof(message));
message.h.method = (char *)OGS_SBI_HTTP_METHOD_POST;
message.h.uri = ogs_msprintf("%s/%s",
app_session->notif_uri, OGS_SBI_RESOURCE_NAME_TERMINATE);
if (!message.h.uri) {
ogs_error("No message.h.uri");
goto end;
}
request = ogs_sbi_build_request(&message);
ogs_assert(request);
end:
if (message.h.uri)
ogs_free(message.h.uri);
return request;
}