mirror of
				https://github.com/open5gs/open5gs.git
				synced 2025-11-03 21:43:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			73 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			2.2 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/>.
 | 
						|
 */
 | 
						|
 | 
						|
#if !defined(OGS_SBI_INSIDE) && !defined(OGS_SBI_COMPILATION)
 | 
						|
#error "This header cannot be included directly."
 | 
						|
#endif
 | 
						|
 | 
						|
#ifndef OGS_SBI_CLIENT_H
 | 
						|
#define OGS_SBI_CLIENT_H
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
#define OGS_SETUP_SBI_CLIENT(__cTX, __pCLIENT) \
 | 
						|
    do { \
 | 
						|
        ogs_assert((__cTX)); \
 | 
						|
        ogs_assert((__pCLIENT)); \
 | 
						|
        (__cTX)->client = __pCLIENT; \
 | 
						|
    } while(0)
 | 
						|
typedef struct ogs_sbi_client_s {
 | 
						|
    ogs_lnode_t     lnode;
 | 
						|
 | 
						|
    ogs_sockaddr_t  *addr;
 | 
						|
 | 
						|
    struct {
 | 
						|
        const char  *key;
 | 
						|
        const char  *pem;
 | 
						|
    } tls;
 | 
						|
 | 
						|
    int             (*cb)(ogs_sbi_response_t *response, void *data);
 | 
						|
 | 
						|
    ogs_timer_t     *t_curl;                /* timer for CURL */
 | 
						|
    ogs_list_t      connection_list;        /* CURL connection list */
 | 
						|
 | 
						|
    void            *multi;                 /* CURL multi handle */
 | 
						|
    int             still_running;          /* number of running CURL handle */
 | 
						|
} ogs_sbi_client_t;
 | 
						|
 | 
						|
void ogs_sbi_client_init(int num_of_sockinfo_pool, int num_of_connection_pool);
 | 
						|
void ogs_sbi_client_final(void);
 | 
						|
 | 
						|
ogs_sbi_client_t *ogs_sbi_client_add(ogs_sockaddr_t *addr);
 | 
						|
ogs_sbi_client_t *ogs_sbi_client_find_or_add(char *uri);
 | 
						|
void ogs_sbi_client_remove(ogs_sbi_client_t *client);
 | 
						|
void ogs_sbi_client_remove_all(void);
 | 
						|
ogs_sbi_client_t *ogs_sbi_client_find(ogs_sockaddr_t *addr);
 | 
						|
 | 
						|
void ogs_sbi_client_send_request(
 | 
						|
        ogs_sbi_client_t *client, ogs_sbi_request_t *request, void *data);
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* OGS_SBI_CLIENT_H */
 |