diff options
author | Martin Storsjö <martin@martin.st> | 2010-08-25 15:32:29 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-08-25 15:32:29 +0000 |
commit | 7934b15d5a12796da9db28441e105520bb57f2e2 (patch) | |
tree | f04b23ce698f045515a33f5223c03804fdd48d2d /libavformat/rtsp.h | |
parent | 3fbd12d109722c5f337ddf73451150178deaa024 (diff) | |
download | ffmpeg-7934b15d5a12796da9db28441e105520bb57f2e2.tar.gz |
Handle IPv6 in the RTSP code
Originally committed as revision 24925 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r-- | libavformat/rtsp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h index 0cd7358273..49dbfdef28 100644 --- a/libavformat/rtsp.h +++ b/libavformat/rtsp.h @@ -96,7 +96,7 @@ typedef struct RTSPTransportField { * packets will be allowed to make before being discarded. */ int ttl; - uint32_t destination; /**< destination IP address */ + struct sockaddr_storage destination; /**< destination IP address */ /** data/packet transport protocol; e.g. RTP or RDT */ enum RTSPTransport transport; |