Added git args

This commit is contained in:
David Rupprecht 2021-07-16 16:41:52 +02:00 committed by David Rupprecht
parent 4f0f6169f5
commit 880eb6fc14
2 changed files with 6 additions and 0 deletions

View File

@ -68,6 +68,7 @@ public:
bool
handle_amf_rx_msg(srsran::unique_byte_buffer_t pdu, const sockaddr_in& from, const sctp_sndrcvinfo& sri, int flags);
void get_metrics(ngap_metrics_t& m);
void get_args(ngap_args_t& args_);
private:
static const int AMF_PORT = 38412;

View File

@ -156,6 +156,11 @@ void ngap::get_metrics(ngap_metrics_t& m)
}
}
void ngap::get_args(ngap_args_t& args_)
{
args_ = args;
}
bool ngap::is_amf_connected()
{
return amf_connected;