You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 25, 2024. It is now read-only.
std::function<void(pfc_service_announcment&)> service_broadcast_callback; //!<Callback function that is called each time a new service is announced
38
+
std::function<void(pfc_service_announcement&)> service_broadcast_callback; //!<Callback function that is called each time a new service is announced
39
39
40
-
pfc_service_announcment service_config; //!<Struct containing details that will be broadcasted over mulicast so other services and clients can subscribe
40
+
pfc_service_announcement service_config; //!<Struct containing details that will be broadcasted over mulicast so other services and clients can subscribe
41
41
Config::protocol style; //!<Configuration Style of the service implmentation
42
42
43
-
Multicast_Sender multicast_announcment; //!<periodically announces itself to the network
44
-
Multicast_Receiver multicast_broadcast_listiner; //!< Responds to the announcment of new services
43
+
Multicast_Sender multicast_announcement; //!<periodically announces itself to the network
44
+
Multicast_Receiver multicast_broadcast_listiner; //!< Responds to the announcement of new services
45
45
pfc::Error server_status; //!< Current Error code of the system else Success()
46
46
};
47
47
48
48
//!
49
49
//! \param bind_address [IN] std::string -- The IP4/IP6 address the implmentation will bind to for multicast purposes
50
50
//! \param multicast_address [IN] std::string -- The IP4/IP6 address the implmentation will broadcast. Port number is assumed by the specification
0 commit comments