diff options
author | deva <deva> | 2006-07-20 17:53:17 +0000 |
---|---|---|
committer | deva <deva> | 2006-07-20 17:53:17 +0000 |
commit | 7d39c063ea84b9b30dbe669ac4ae641a49506836 (patch) | |
tree | ef1ead10d1736e9ad7ffe139872c86fd2ee00901 /server/multicast.h | |
parent | c8df40b62cf30029a4acd1a57c8c54add54dda9b (diff) |
Utilized the global info object.
Utilized the global info object.
Utilized the global info object.
Diffstat (limited to 'server/multicast.h')
-rw-r--r-- | server/multicast.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/server/multicast.h b/server/multicast.h index 08df3e1..d4fa784 100644 --- a/server/multicast.h +++ b/server/multicast.h @@ -29,11 +29,10 @@ #define __MIAV_MULTICAST_H__ #include "multicast_configuration.h" -#include "info.h" class Multicast { public: - Multicast(Info *i, mcastconf_t &mcclientconf); + Multicast(mcastconf_t &mcclientconf); ~Multicast(); int Write(void* buf, int size); @@ -41,8 +40,6 @@ public: bool multicast_audio; private: - Info *info; - bool is_address_multicast(unsigned long address); bool UDPOpen(const char *address, int port); int sock; |