diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-07-01 13:19:23 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-07-01 13:19:23 +0200 |
commit | 6992225da8c43fc16f5de1a02d218f80e9e60bf1 (patch) | |
tree | 1ab0c230b0fca896051f5fb54ec55073e79d11ab /lib/Socket.h | |
parent | be19dda79c659ce71fbbad087dd81a5a4bc8a2f5 (diff) | |
download | dabmod-6992225da8c43fc16f5de1a02d218f80e9e60bf1.tar.gz dabmod-6992225da8c43fc16f5de1a02d218f80e9e60bf1.tar.bz2 dabmod-6992225da8c43fc16f5de1a02d218f80e9e60bf1.zip |
Common: 710f5e6, Socket multicast reception
Diffstat (limited to 'lib/Socket.h')
-rw-r--r-- | lib/Socket.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Socket.h b/lib/Socket.h index d8242e2..44f93d0 100644 --- a/lib/Socket.h +++ b/lib/Socket.h @@ -111,6 +111,7 @@ class UDPSocket /** Close the already open socket, and create a new one. Throws a runtime_error on error. */ void reinit(int port); void reinit(int port, const std::string& name); + void init_receive_multicast(int port, const std::string& local_if_addr, const std::string& mcastaddr); void close(void); void send(UDPPacket& packet); |