Commit dc38b518 authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

Add comments

parent 3a578f11
...@@ -52,7 +52,7 @@ class amf_event { ...@@ -52,7 +52,7 @@ class amf_event {
/* /*
* Subscribe to Location Report signal * Subscribe to Location Report signal
* @param [const ue_location_report_sig_t::slot_type&] sig: slot_type * @param [const ue_location_report_sig_t::slot_type&] sig: slot_type
* parameter * parameter
* @return boost::signals2::connection: the connection between the signal and * @return boost::signals2::connection: the connection between the signal and
* the slot * the slot
...@@ -62,7 +62,7 @@ class amf_event { ...@@ -62,7 +62,7 @@ class amf_event {
/* /*
* Subscribe to UE Reachability Status Notification signal * Subscribe to UE Reachability Status Notification signal
* @param [const ue_reachability_status_sig_t::slot_type&] sig: slot_type * @param [const ue_reachability_status_sig_t::slot_type&] sig: slot_type
* parameter * parameter
* @return boost::signals2::connection: the connection between the signal and * @return boost::signals2::connection: the connection between the signal and
* the slot * the slot
...@@ -72,7 +72,7 @@ class amf_event { ...@@ -72,7 +72,7 @@ class amf_event {
/* /*
* Subscribe to UE Registration State Notification signal * Subscribe to UE Registration State Notification signal
* @param [const ue_registration_state_sig_t::slot_type&] sig: slot_type * @param [const ue_registration_state_sig_t::slot_type&] sig: slot_type
* parameter * parameter
* @return boost::signals2::connection: the connection between the signal and * @return boost::signals2::connection: the connection between the signal and
* the slot * the slot
...@@ -82,7 +82,7 @@ class amf_event { ...@@ -82,7 +82,7 @@ class amf_event {
/* /*
* Subscribe to UE Connectivity State Notification signal * Subscribe to UE Connectivity State Notification signal
* @param [const ue_connectivity_state_sig_t::slot_type&] sig: slot_type * @param [const ue_connectivity_state_sig_t::slot_type&] sig: slot_type
* parameter * parameter
* @return boost::signals2::connection: the connection between the signal and * @return boost::signals2::connection: the connection between the signal and
* the slot * the slot
......
...@@ -37,10 +37,13 @@ ...@@ -37,10 +37,13 @@
namespace bs2 = boost::signals2; namespace bs2 = boost::signals2;
namespace amf_application { namespace amf_application {
// TODO: Location-Report
// Signal for UE Location Report
// SUPI, User Location, HTTP version
typedef bs2::signal_type< typedef bs2::signal_type<
void(std::string, oai::amf::model::UserLocation, uint8_t), void(std::string, oai::amf::model::UserLocation, uint8_t),
bs2::keywords::mutex_type<bs2::dummy_mutex>>::type ue_location_report_sig_t; bs2::keywords::mutex_type<bs2::dummy_mutex>>::type ue_location_report_sig_t;
// TODO: Presence-In-AOI-Report // TODO: Presence-In-AOI-Report
// TODO: Time-Zone-Report // TODO: Time-Zone-Report
// TODO: Access-Type-Report // TODO: Access-Type-Report
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment