diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2005-08-12 14:01:03 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2005-08-12 14:01:03 +0000 |
commit | 9c633e9a6f6630d7a030256602da4acfa9773e04 (patch) | |
tree | 34c64f2f7e392a4a76ebd2829fcab77e07447d38 | |
parent | 597cad6a04b5d8940dbb8f6be32ae974c8d19eed (diff) | |
download | ffmpeg-streaming-9c633e9a6f6630d7a030256602da4acfa9773e04.zip ffmpeg-streaming-9c633e9a6f6630d7a030256602da4acfa9773e04.tar.gz |
FreeBSD ipv6 multicast patch from ports tree
Originally committed as revision 4507 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/udp.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/udp.c b/libavformat/udp.c index 3f3a9f7..ff2885b 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -28,6 +28,11 @@ #endif #include <netdb.h> +#ifndef IPV6_ADD_MEMBERSHIP +#define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP +#define IPV6_DROP_MEMBERSHIP IPV6_LEAVE_GROUP +#endif + typedef struct { int udp_fd; int ttl; |