Fix delivery of indication message

xApp can now receive entire indication message.
This commit is contained in:
JaykobJ
2023-11-30 10:46:49 +00:00
parent b2c654518e
commit b65e2a4a1f
3 changed files with 5 additions and 6 deletions

View File

@@ -27,6 +27,6 @@ extern std::map<std::string, std::string> agentIp_gnbId;
int open_control_socket_agent(const char* dest_ip, const int dest_port);
void close_control_socket_agent(void);
std::string find_agent_ip_from_gnb(unsigned char* gnb_id);
int send_socket(char* buf, std::string dest_ip);
int send_socket(char* buf, size_t payload_size, std::string dest_ip);
#endif