You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
rtpproto: Check for the right feature when reading a sockaddr_in6
Some systems, such as OS/2, define AF_INET6 without a full implementation. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
@@ -132,7 +132,7 @@ static int get_port(const struct sockaddr_storage *ss)
|
||||
{
|
||||
if (ss->ss_family == AF_INET)
|
||||
return ntohs(((const struct sockaddr_in *)ss)->sin_port);
|
||||
#ifdef AF_INET6
|
||||
#if HAVE_STRUCT_SOCKADDR_IN6
|
||||
if (ss->ss_family == AF_INET6)
|
||||
return ntohs(((const struct sockaddr_in6 *)ss)->sin6_port);
|
||||
#endif
|
||||
@@ -143,7 +143,7 @@ static void set_port(struct sockaddr_storage *ss, int port)
|
||||
{
|
||||
if (ss->ss_family == AF_INET)
|
||||
((struct sockaddr_in *)ss)->sin_port = htons(port);
|
||||
#ifdef AF_INET6
|
||||
#if HAVE_STRUCT_SOCKADDR_IN6
|
||||
else if (ss->ss_family == AF_INET6)
|
||||
((struct sockaddr_in6 *)ss)->sin6_port = htons(port);
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user