Mercurial > libavformat.hg
annotate udp.c @ 5801:1851c2275530 libavformat
Using struct timeval requires sys/time.h, fixes compilation on some OSes
Patch by Dave Yeo, daveryeo at telus dot net
author | mstorsjo |
---|---|
date | Wed, 10 Mar 2010 07:43:56 +0000 |
parents | 7a123cc24a81 |
children | d605f589f0be |
rev | line source |
---|---|
0 | 1 /* |
2 * UDP prototype streaming system | |
4251
77e0c7511d41
cosmetics: Remove pointless period after copyright statement non-sentences.
diego
parents:
4206
diff
changeset
|
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard |
0 | 4 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1332
diff
changeset
|
5 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1332
diff
changeset
|
6 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1332
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
0 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1332
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
0 | 11 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1332
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
0 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Lesser General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1332
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
885
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 20 */ |
3231 | 21 |
22 /** | |
4331
49c1d3b27727
Use full internal pathname in doxygen @file directives.
diego
parents:
4251
diff
changeset
|
23 * @file libavformat/udp.c |
3231 | 24 * UDP protocol |
25 */ | |
26 | |
3776 | 27 #define _BSD_SOURCE /* Needed for using struct ip_mreq with recent glibc */ |
0 | 28 #include "avformat.h" |
29 #include <unistd.h> | |
1754 | 30 #include "network.h" |
2773 | 31 #include "os_support.h" |
4206 | 32 #if HAVE_SYS_SELECT_H |
4024 | 33 #include <sys/select.h> |
34 #endif | |
4083
2de14ee7b25f
Add sys/time.h header #include, fixes compilation on OS/2.
diego
parents:
4070
diff
changeset
|
35 #include <sys/time.h> |
0 | 36 |
834 | 37 #ifndef IPV6_ADD_MEMBERSHIP |
38 #define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP | |
39 #define IPV6_DROP_MEMBERSHIP IPV6_LEAVE_GROUP | |
40 #endif | |
3221 | 41 #ifndef IN_MULTICAST |
42 #define IN_MULTICAST(a) ((((uint32_t)(a)) & 0xf0000000) == 0xe0000000) | |
43 #endif | |
44 #ifndef IN6_IS_ADDR_MULTICAST | |
45 #define IN6_IS_ADDR_MULTICAST(a) (((uint8_t *) (a))[0] == 0xff) | |
46 #endif | |
834 | 47 |
0 | 48 typedef struct { |
49 int udp_fd; | |
50 int ttl; | |
4021
6390b29b59f2
Allow the UDP socket buffer size to be adjusted using a
andoma
parents:
3776
diff
changeset
|
51 int buffer_size; |
0 | 52 int is_multicast; |
53 int local_port; | |
1428
7316227e64eb
Make it possible to reuse UDP socket (optional, disabled by default)
gpoirier
parents:
1358
diff
changeset
|
54 int reuse_socket; |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
55 struct sockaddr_storage dest_addr; |
3287
8570df039c75
Fix type of dest_addr_len to respect return value of udp_set_url.
cehoyos
parents:
3231
diff
changeset
|
56 int dest_addr_len; |
0 | 57 } UDPContext; |
58 | |
59 #define UDP_TX_BUF_SIZE 32768 | |
2391 | 60 #define UDP_MAX_PKT_SIZE 65536 |
0 | 61 |
5576 | 62 static int udp_set_multicast_ttl(int sockfd, int mcastTTL, |
63 struct sockaddr *addr) | |
64 { | |
2739
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
65 #ifdef IP_MULTICAST_TTL |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
66 if (addr->sa_family == AF_INET) { |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
67 if (setsockopt(sockfd, IPPROTO_IP, IP_MULTICAST_TTL, &mcastTTL, sizeof(mcastTTL)) < 0) { |
2768 | 68 av_log(NULL, AV_LOG_ERROR, "setsockopt(IP_MULTICAST_TTL): %s\n", strerror(errno)); |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
69 return -1; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
70 } |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
71 } |
2739
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
72 #endif |
5567
9934ca658946
Remove IPv4-only codepath. Patch by Martin Storsj <$first $first st>.
rbultje
parents:
4640
diff
changeset
|
73 #if defined(IPPROTO_IPV6) && defined(IPV6_MULTICAST_HOPS) |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
74 if (addr->sa_family == AF_INET6) { |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
75 if (setsockopt(sockfd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &mcastTTL, sizeof(mcastTTL)) < 0) { |
2768 | 76 av_log(NULL, AV_LOG_ERROR, "setsockopt(IPV6_MULTICAST_HOPS): %s\n", strerror(errno)); |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
77 return -1; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
78 } |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
79 } |
2739
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
80 #endif |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
81 return 0; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
82 } |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
83 |
5576 | 84 static int udp_join_multicast_group(int sockfd, struct sockaddr *addr) |
85 { | |
2739
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
86 #ifdef IP_ADD_MEMBERSHIP |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
87 if (addr->sa_family == AF_INET) { |
2739
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
88 struct ip_mreq mreq; |
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
89 |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
90 mreq.imr_multiaddr.s_addr = ((struct sockaddr_in *)addr)->sin_addr.s_addr; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
91 mreq.imr_interface.s_addr= INADDR_ANY; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
92 if (setsockopt(sockfd, IPPROTO_IP, IP_ADD_MEMBERSHIP, (const void *)&mreq, sizeof(mreq)) < 0) { |
2768 | 93 av_log(NULL, AV_LOG_ERROR, "setsockopt(IP_ADD_MEMBERSHIP): %s\n", strerror(errno)); |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
94 return -1; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
95 } |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
96 } |
2739
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
97 #endif |
5567
9934ca658946
Remove IPv4-only codepath. Patch by Martin Storsj <$first $first st>.
rbultje
parents:
4640
diff
changeset
|
98 #if HAVE_STRUCT_IPV6_MREQ |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
99 if (addr->sa_family == AF_INET6) { |
2739
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
100 struct ipv6_mreq mreq6; |
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
101 |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
102 memcpy(&mreq6.ipv6mr_multiaddr, &(((struct sockaddr_in6 *)addr)->sin6_addr), sizeof(struct in6_addr)); |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
103 mreq6.ipv6mr_interface= 0; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
104 if (setsockopt(sockfd, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP, &mreq6, sizeof(mreq6)) < 0) { |
2768 | 105 av_log(NULL, AV_LOG_ERROR, "setsockopt(IPV6_ADD_MEMBERSHIP): %s\n", strerror(errno)); |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
106 return -1; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
107 } |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
108 } |
2739
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
109 #endif |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
110 return 0; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
111 } |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
112 |
5576 | 113 static int udp_leave_multicast_group(int sockfd, struct sockaddr *addr) |
114 { | |
2739
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
115 #ifdef IP_DROP_MEMBERSHIP |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
116 if (addr->sa_family == AF_INET) { |
2739
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
117 struct ip_mreq mreq; |
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
118 |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
119 mreq.imr_multiaddr.s_addr = ((struct sockaddr_in *)addr)->sin_addr.s_addr; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
120 mreq.imr_interface.s_addr= INADDR_ANY; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
121 if (setsockopt(sockfd, IPPROTO_IP, IP_DROP_MEMBERSHIP, (const void *)&mreq, sizeof(mreq)) < 0) { |
2768 | 122 av_log(NULL, AV_LOG_ERROR, "setsockopt(IP_DROP_MEMBERSHIP): %s\n", strerror(errno)); |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
123 return -1; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
124 } |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
125 } |
2739
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
126 #endif |
5567
9934ca658946
Remove IPv4-only codepath. Patch by Martin Storsj <$first $first st>.
rbultje
parents:
4640
diff
changeset
|
127 #if HAVE_STRUCT_IPV6_MREQ |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
128 if (addr->sa_family == AF_INET6) { |
2739
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
129 struct ipv6_mreq mreq6; |
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
130 |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
131 memcpy(&mreq6.ipv6mr_multiaddr, &(((struct sockaddr_in6 *)addr)->sin6_addr), sizeof(struct in6_addr)); |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
132 mreq6.ipv6mr_interface= 0; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
133 if (setsockopt(sockfd, IPPROTO_IPV6, IPV6_DROP_MEMBERSHIP, &mreq6, sizeof(mreq6)) < 0) { |
2768 | 134 av_log(NULL, AV_LOG_ERROR, "setsockopt(IPV6_DROP_MEMBERSHIP): %s\n", strerror(errno)); |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
135 return -1; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
136 } |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
137 } |
2739
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
138 #endif |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
139 return 0; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
140 } |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
141 |
5576 | 142 static struct addrinfo* udp_resolve_host(const char *hostname, int port, |
143 int type, int family, int flags) | |
144 { | |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
145 struct addrinfo hints, *res = 0; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
146 int error; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
147 char sport[16]; |
2687
f4d24b10d33d
Resolve hosts and bind sockets even when the local_port is not set (0)
lucabe
parents:
2391
diff
changeset
|
148 const char *node = 0, *service = "0"; |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
149 |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
150 if (port > 0) { |
644 | 151 snprintf(sport, sizeof(sport), "%d", port); |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
152 service = sport; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
153 } |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
154 if ((hostname) && (hostname[0] != '\0') && (hostname[0] != '?')) { |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
155 node = hostname; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
156 } |
2688 | 157 memset(&hints, 0, sizeof(hints)); |
158 hints.ai_socktype = type; | |
159 hints.ai_family = family; | |
160 hints.ai_flags = flags; | |
161 if ((error = getaddrinfo(node, service, &hints, &res))) { | |
5731
c5a662ed3ab5
Explicitly set struct addrinfo to NULL if getaddrinfo failed instead of
reimar
parents:
5576
diff
changeset
|
162 res = NULL; |
5575
d40a7e8259ff
Rename a function which is no longer ipv6-specific. Patch by Martin Storsj
rbultje
parents:
5567
diff
changeset
|
163 av_log(NULL, AV_LOG_ERROR, "udp_resolve_host: %s\n", gai_strerror(error)); |
2688 | 164 } |
165 | |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
166 return res; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
167 } |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
168 |
5576 | 169 static int udp_set_url(struct sockaddr_storage *addr, |
170 const char *hostname, int port) | |
171 { | |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
172 struct addrinfo *res0; |
2743
a847a9eda9b2
Simplify set_remote_url(), and remove some code duplication
lucabe
parents:
2742
diff
changeset
|
173 int addr_len; |
a847a9eda9b2
Simplify set_remote_url(), and remove some code duplication
lucabe
parents:
2742
diff
changeset
|
174 |
5575
d40a7e8259ff
Rename a function which is no longer ipv6-specific. Patch by Martin Storsj
rbultje
parents:
5567
diff
changeset
|
175 res0 = udp_resolve_host(hostname, port, SOCK_DGRAM, AF_UNSPEC, 0); |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2162
diff
changeset
|
176 if (res0 == 0) return AVERROR(EIO); |
2743
a847a9eda9b2
Simplify set_remote_url(), and remove some code duplication
lucabe
parents:
2742
diff
changeset
|
177 memcpy(addr, res0->ai_addr, res0->ai_addrlen); |
a847a9eda9b2
Simplify set_remote_url(), and remove some code duplication
lucabe
parents:
2742
diff
changeset
|
178 addr_len = res0->ai_addrlen; |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
179 freeaddrinfo(res0); |
2743
a847a9eda9b2
Simplify set_remote_url(), and remove some code duplication
lucabe
parents:
2742
diff
changeset
|
180 |
a847a9eda9b2
Simplify set_remote_url(), and remove some code duplication
lucabe
parents:
2742
diff
changeset
|
181 return addr_len; |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
182 } |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
183 |
3221 | 184 static int is_multicast_address(struct sockaddr_storage *addr) |
185 { | |
186 if (addr->ss_family == AF_INET) { | |
187 return IN_MULTICAST(ntohl(((struct sockaddr_in *)addr)->sin_addr.s_addr)); | |
188 } | |
5567
9934ca658946
Remove IPv4-only codepath. Patch by Martin Storsj <$first $first st>.
rbultje
parents:
4640
diff
changeset
|
189 #if HAVE_STRUCT_SOCKADDR_IN6 |
3221 | 190 if (addr->ss_family == AF_INET6) { |
191 return IN6_IS_ADDR_MULTICAST(&((struct sockaddr_in6 *)addr)->sin6_addr); | |
192 } | |
5567
9934ca658946
Remove IPv4-only codepath. Patch by Martin Storsj <$first $first st>.
rbultje
parents:
4640
diff
changeset
|
193 #endif |
3221 | 194 |
195 return 0; | |
196 } | |
197 | |
5576 | 198 static int udp_socket_create(UDPContext *s, |
199 struct sockaddr_storage *addr, int *addr_len) | |
2752 | 200 { |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
201 int udp_fd = -1; |
825
c8d4a65729c5
udp ipv6 localhost resolving patch by ("Hans Zandbelt": Hans Zandbelt, telin nl)
michael
parents:
815
diff
changeset
|
202 struct addrinfo *res0 = NULL, *res = NULL; |
2689
7d25b8de708d
Take the target address family in account when determining the family of
lucabe
parents:
2688
diff
changeset
|
203 int family = AF_UNSPEC; |
885 | 204 |
2689
7d25b8de708d
Take the target address family in account when determining the family of
lucabe
parents:
2688
diff
changeset
|
205 if (((struct sockaddr *) &s->dest_addr)->sa_family) |
7d25b8de708d
Take the target address family in account when determining the family of
lucabe
parents:
2688
diff
changeset
|
206 family = ((struct sockaddr *) &s->dest_addr)->sa_family; |
5575
d40a7e8259ff
Rename a function which is no longer ipv6-specific. Patch by Martin Storsj
rbultje
parents:
5567
diff
changeset
|
207 res0 = udp_resolve_host(0, s->local_port, SOCK_DGRAM, family, AI_PASSIVE); |
2688 | 208 if (res0 == 0) |
209 goto fail; | |
210 for (res = res0; res; res=res->ai_next) { | |
211 udp_fd = socket(res->ai_family, SOCK_DGRAM, 0); | |
212 if (udp_fd > 0) break; | |
2768 | 213 av_log(NULL, AV_LOG_ERROR, "socket: %s\n", strerror(errno)); |
2688 | 214 } |
825
c8d4a65729c5
udp ipv6 localhost resolving patch by ("Hans Zandbelt": Hans Zandbelt, telin nl)
michael
parents:
815
diff
changeset
|
215 |
c8d4a65729c5
udp ipv6 localhost resolving patch by ("Hans Zandbelt": Hans Zandbelt, telin nl)
michael
parents:
815
diff
changeset
|
216 if (udp_fd < 0) |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
217 goto fail; |
885 | 218 |
2752 | 219 memcpy(addr, res->ai_addr, res->ai_addrlen); |
220 *addr_len = res->ai_addrlen; | |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
221 |
2752 | 222 freeaddrinfo(res0); |
885 | 223 |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
224 return udp_fd; |
885 | 225 |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
226 fail: |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
227 if (udp_fd >= 0) |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
228 closesocket(udp_fd); |
683
095009fc2f35
kill warnings patch by (Mns Rullgrd <mru inprovide com>)
michael
parents:
644
diff
changeset
|
229 if(res0) |
095009fc2f35
kill warnings patch by (Mns Rullgrd <mru inprovide com>)
michael
parents:
644
diff
changeset
|
230 freeaddrinfo(res0); |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
231 return -1; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
232 } |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
233 |
2752 | 234 static int udp_port(struct sockaddr_storage *addr, int addr_len) |
235 { | |
3025
41d68d056417
Do not use GNU-specific (or BSD-specific or whatever they may be)
rfelker
parents:
2773
diff
changeset
|
236 char sbuf[sizeof(int)*3+1]; |
2752 | 237 |
3025
41d68d056417
Do not use GNU-specific (or BSD-specific or whatever they may be)
rfelker
parents:
2773
diff
changeset
|
238 if (getnameinfo((struct sockaddr *)addr, addr_len, NULL, 0, sbuf, sizeof(sbuf), NI_NUMERICSERV) != 0) { |
2768 | 239 av_log(NULL, AV_LOG_ERROR, "getnameinfo: %s\n", strerror(errno)); |
2752 | 240 return -1; |
241 } | |
242 | |
243 return strtol(sbuf, NULL, 10); | |
244 } | |
245 | |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
246 |
0 | 247 /** |
248 * If no filename is given to av_open_input_file because you want to | |
249 * get the local port first, then you must call this function to set | |
250 * the remote server address. | |
251 * | |
252 * url syntax: udp://host:port[?option=val...] | |
3221 | 253 * option: 'ttl=n' : set the ttl value (for multicast only) |
0 | 254 * 'localport=n' : set the local port |
62 | 255 * 'pkt_size=n' : set max packet size |
1428
7316227e64eb
Make it possible to reuse UDP socket (optional, disabled by default)
gpoirier
parents:
1358
diff
changeset
|
256 * 'reuse=1' : enable reusing the socket |
0 | 257 * |
258 * @param s1 media file context | |
259 * @param uri of the remote server | |
260 * @return zero if no error. | |
261 */ | |
262 int udp_set_remote_url(URLContext *h, const char *uri) | |
263 { | |
264 UDPContext *s = h->priv_data; | |
265 char hostname[256]; | |
266 int port; | |
885 | 267 |
5775 | 268 ff_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri); |
0 | 269 |
270 /* set the destination address */ | |
2743
a847a9eda9b2
Simplify set_remote_url(), and remove some code duplication
lucabe
parents:
2742
diff
changeset
|
271 s->dest_addr_len = udp_set_url(&s->dest_addr, hostname, port); |
a847a9eda9b2
Simplify set_remote_url(), and remove some code duplication
lucabe
parents:
2742
diff
changeset
|
272 if (s->dest_addr_len < 0) { |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2162
diff
changeset
|
273 return AVERROR(EIO); |
2743
a847a9eda9b2
Simplify set_remote_url(), and remove some code duplication
lucabe
parents:
2742
diff
changeset
|
274 } |
3221 | 275 s->is_multicast = is_multicast_address(&s->dest_addr); |
2743
a847a9eda9b2
Simplify set_remote_url(), and remove some code duplication
lucabe
parents:
2742
diff
changeset
|
276 |
0 | 277 return 0; |
278 } | |
279 | |
280 /** | |
281 * Return the local port used by the UDP connexion | |
282 * @param s1 media file context | |
283 * @return the local port number | |
284 */ | |
285 int udp_get_local_port(URLContext *h) | |
286 { | |
287 UDPContext *s = h->priv_data; | |
288 return s->local_port; | |
289 } | |
290 | |
291 /** | |
292 * Return the udp file handle for select() usage to wait for several RTP | |
293 * streams at the same time. | |
294 * @param h media file context | |
295 */ | |
4640
b34d9614b887
Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents:
4331
diff
changeset
|
296 #if (LIBAVFORMAT_VERSION_MAJOR >= 53) |
b34d9614b887
Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents:
4331
diff
changeset
|
297 static |
b34d9614b887
Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents:
4331
diff
changeset
|
298 #endif |
0 | 299 int udp_get_file_handle(URLContext *h) |
300 { | |
301 UDPContext *s = h->priv_data; | |
302 return s->udp_fd; | |
303 } | |
304 | |
305 /* put it in UDP context */ | |
306 /* return non zero if error */ | |
307 static int udp_open(URLContext *h, const char *uri, int flags) | |
308 { | |
309 char hostname[1024]; | |
4070 | 310 int port, udp_fd = -1, tmp, bind_ret = -1; |
0 | 311 UDPContext *s = NULL; |
683
095009fc2f35
kill warnings patch by (Mns Rullgrd <mru inprovide com>)
michael
parents:
644
diff
changeset
|
312 int is_output; |
0 | 313 const char *p; |
314 char buf[256]; | |
2752 | 315 struct sockaddr_storage my_addr; |
683
095009fc2f35
kill warnings patch by (Mns Rullgrd <mru inprovide com>)
michael
parents:
644
diff
changeset
|
316 int len; |
0 | 317 |
318 h->is_streamed = 1; | |
62 | 319 h->max_packet_size = 1472; |
0 | 320 |
321 is_output = (flags & URL_WRONLY); | |
885 | 322 |
2689
7d25b8de708d
Take the target address family in account when determining the family of
lucabe
parents:
2688
diff
changeset
|
323 s = av_mallocz(sizeof(UDPContext)); |
0 | 324 if (!s) |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1754
diff
changeset
|
325 return AVERROR(ENOMEM); |
0 | 326 |
327 h->priv_data = s; | |
328 s->ttl = 16; | |
4021
6390b29b59f2
Allow the UDP socket buffer size to be adjusted using a
andoma
parents:
3776
diff
changeset
|
329 s->buffer_size = is_output ? UDP_TX_BUF_SIZE : UDP_MAX_PKT_SIZE; |
6390b29b59f2
Allow the UDP socket buffer size to be adjusted using a
andoma
parents:
3776
diff
changeset
|
330 |
0 | 331 p = strchr(uri, '?'); |
332 if (p) { | |
1428
7316227e64eb
Make it possible to reuse UDP socket (optional, disabled by default)
gpoirier
parents:
1358
diff
changeset
|
333 s->reuse_socket = find_info_tag(buf, sizeof(buf), "reuse", p); |
0 | 334 if (find_info_tag(buf, sizeof(buf), "ttl", p)) { |
335 s->ttl = strtol(buf, NULL, 10); | |
336 } | |
337 if (find_info_tag(buf, sizeof(buf), "localport", p)) { | |
338 s->local_port = strtol(buf, NULL, 10); | |
339 } | |
62 | 340 if (find_info_tag(buf, sizeof(buf), "pkt_size", p)) { |
341 h->max_packet_size = strtol(buf, NULL, 10); | |
342 } | |
4021
6390b29b59f2
Allow the UDP socket buffer size to be adjusted using a
andoma
parents:
3776
diff
changeset
|
343 if (find_info_tag(buf, sizeof(buf), "buffer_size", p)) { |
6390b29b59f2
Allow the UDP socket buffer size to be adjusted using a
andoma
parents:
3776
diff
changeset
|
344 s->buffer_size = strtol(buf, NULL, 10); |
6390b29b59f2
Allow the UDP socket buffer size to be adjusted using a
andoma
parents:
3776
diff
changeset
|
345 } |
0 | 346 } |
347 | |
348 /* fill the dest addr */ | |
5775 | 349 ff_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri); |
885 | 350 |
5775 | 351 /* XXX: fix ff_url_split */ |
0 | 352 if (hostname[0] == '\0' || hostname[0] == '?') { |
353 /* only accepts null hostname if input */ | |
3221 | 354 if (flags & URL_WRONLY) |
0 | 355 goto fail; |
356 } else { | |
357 udp_set_remote_url(h, uri); | |
358 } | |
359 | |
2750
b3a11a0966af
Use the same code to set local_port in the IPv4-only case and in the
lucabe
parents:
2744
diff
changeset
|
360 if (s->is_multicast && !(h->flags & URL_WRONLY)) |
b3a11a0966af
Use the same code to set local_port in the IPv4-only case and in the
lucabe
parents:
2744
diff
changeset
|
361 s->local_port = port; |
2752 | 362 udp_fd = udp_socket_create(s, &my_addr, &len); |
0 | 363 if (udp_fd < 0) |
364 goto fail; | |
365 | |
1428
7316227e64eb
Make it possible to reuse UDP socket (optional, disabled by default)
gpoirier
parents:
1358
diff
changeset
|
366 if (s->reuse_socket) |
7316227e64eb
Make it possible to reuse UDP socket (optional, disabled by default)
gpoirier
parents:
1358
diff
changeset
|
367 if (setsockopt (udp_fd, SOL_SOCKET, SO_REUSEADDR, &(s->reuse_socket), sizeof(s->reuse_socket)) != 0) |
7316227e64eb
Make it possible to reuse UDP socket (optional, disabled by default)
gpoirier
parents:
1358
diff
changeset
|
368 goto fail; |
7316227e64eb
Make it possible to reuse UDP socket (optional, disabled by default)
gpoirier
parents:
1358
diff
changeset
|
369 |
0 | 370 /* the bind is needed to give a port to the socket now */ |
4070 | 371 /* if multicast, try the multicast address bind first */ |
372 if (s->is_multicast && !(h->flags & URL_WRONLY)) { | |
373 bind_ret = bind(udp_fd,(struct sockaddr *)&s->dest_addr, len); | |
374 } | |
375 /* bind to the local address if not multicast or if the multicast | |
376 * bind failed */ | |
377 if (bind_ret < 0 && bind(udp_fd,(struct sockaddr *)&my_addr, len) < 0) | |
0 | 378 goto fail; |
379 | |
2751 | 380 len = sizeof(my_addr); |
381 getsockname(udp_fd, (struct sockaddr *)&my_addr, &len); | |
2752 | 382 s->local_port = udp_port(&my_addr, len); |
383 | |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
384 if (s->is_multicast) { |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
385 if (h->flags & URL_WRONLY) { |
2739
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
386 /* output */ |
2740
e23eaab1a894
Give better names to multicast functions (they are not IPv6-only)
lucabe
parents:
2739
diff
changeset
|
387 if (udp_set_multicast_ttl(udp_fd, s->ttl, (struct sockaddr *)&s->dest_addr) < 0) |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
388 goto fail; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
389 } else { |
2739
091af9f47edf
Avoid to duplicate the multicast code between the IPv4-only and
lucabe
parents:
2738
diff
changeset
|
390 /* input */ |
2740
e23eaab1a894
Give better names to multicast functions (they are not IPv6-only)
lucabe
parents:
2739
diff
changeset
|
391 if (udp_join_multicast_group(udp_fd, (struct sockaddr *)&s->dest_addr) < 0) |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
392 goto fail; |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
393 } |
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
394 } |
0 | 395 |
396 if (is_output) { | |
397 /* limit the tx buf size to limit latency */ | |
4021
6390b29b59f2
Allow the UDP socket buffer size to be adjusted using a
andoma
parents:
3776
diff
changeset
|
398 tmp = s->buffer_size; |
0 | 399 if (setsockopt(udp_fd, SOL_SOCKET, SO_SNDBUF, &tmp, sizeof(tmp)) < 0) { |
2768 | 400 av_log(NULL, AV_LOG_ERROR, "setsockopt(SO_SNDBUF): %s\n", strerror(errno)); |
0 | 401 goto fail; |
402 } | |
2391 | 403 } else { |
404 /* set udp recv buffer size to the largest possible udp packet size to | |
405 * avoid losing data on OSes that set this too low by default. */ | |
4021
6390b29b59f2
Allow the UDP socket buffer size to be adjusted using a
andoma
parents:
3776
diff
changeset
|
406 tmp = s->buffer_size; |
6390b29b59f2
Allow the UDP socket buffer size to be adjusted using a
andoma
parents:
3776
diff
changeset
|
407 if (setsockopt(udp_fd, SOL_SOCKET, SO_RCVBUF, &tmp, sizeof(tmp)) < 0) { |
6390b29b59f2
Allow the UDP socket buffer size to be adjusted using a
andoma
parents:
3776
diff
changeset
|
408 av_log(NULL, AV_LOG_WARNING, "setsockopt(SO_RECVBUF): %s\n", strerror(errno)); |
6390b29b59f2
Allow the UDP socket buffer size to be adjusted using a
andoma
parents:
3776
diff
changeset
|
409 } |
4035
8c161751e4c7
Get rid of MSG_DONTWAIT using a more standard way to use a socket
benoit
parents:
4024
diff
changeset
|
410 /* make the socket non-blocking */ |
8c161751e4c7
Get rid of MSG_DONTWAIT using a more standard way to use a socket
benoit
parents:
4024
diff
changeset
|
411 ff_socket_nonblock(udp_fd, 1); |
0 | 412 } |
413 | |
414 s->udp_fd = udp_fd; | |
415 return 0; | |
416 fail: | |
417 if (udp_fd >= 0) | |
418 closesocket(udp_fd); | |
419 av_free(s); | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2162
diff
changeset
|
420 return AVERROR(EIO); |
0 | 421 } |
422 | |
65 | 423 static int udp_read(URLContext *h, uint8_t *buf, int size) |
0 | 424 { |
425 UDPContext *s = h->priv_data; | |
1332 | 426 int len; |
4024 | 427 fd_set rfds; |
428 int ret; | |
429 struct timeval tv; | |
0 | 430 |
431 for(;;) { | |
4024 | 432 if (url_interrupt_cb()) |
433 return AVERROR(EINTR); | |
434 FD_ZERO(&rfds); | |
435 FD_SET(s->udp_fd, &rfds); | |
436 tv.tv_sec = 0; | |
437 tv.tv_usec = 100 * 1000; | |
438 ret = select(s->udp_fd + 1, &rfds, NULL, NULL, &tv); | |
439 if (ret < 0) | |
440 return AVERROR(EIO); | |
441 if (!(ret > 0 && FD_ISSET(s->udp_fd, &rfds))) | |
442 continue; | |
4035
8c161751e4c7
Get rid of MSG_DONTWAIT using a more standard way to use a socket
benoit
parents:
4024
diff
changeset
|
443 len = recv(s->udp_fd, buf, size, 0); |
0 | 444 if (len < 0) { |
2056
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
1810
diff
changeset
|
445 if (ff_neterrno() != FF_NETERROR(EAGAIN) && |
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
1810
diff
changeset
|
446 ff_neterrno() != FF_NETERROR(EINTR)) |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2162
diff
changeset
|
447 return AVERROR(EIO); |
0 | 448 } else { |
449 break; | |
450 } | |
451 } | |
452 return len; | |
453 } | |
454 | |
65 | 455 static int udp_write(URLContext *h, uint8_t *buf, int size) |
0 | 456 { |
457 UDPContext *s = h->priv_data; | |
458 int ret; | |
459 | |
460 for(;;) { | |
885 | 461 ret = sendto (s->udp_fd, buf, size, 0, |
0 | 462 (struct sockaddr *) &s->dest_addr, |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
463 s->dest_addr_len); |
0 | 464 if (ret < 0) { |
2056
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
1810
diff
changeset
|
465 if (ff_neterrno() != FF_NETERROR(EINTR) && |
eeea52739ff3
use ff_neterrno() and FF_NETERROR() for networking error handling
alex
parents:
1810
diff
changeset
|
466 ff_neterrno() != FF_NETERROR(EAGAIN)) |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2162
diff
changeset
|
467 return AVERROR(EIO); |
0 | 468 } else { |
469 break; | |
470 } | |
471 } | |
472 return size; | |
473 } | |
474 | |
475 static int udp_close(URLContext *h) | |
476 { | |
477 UDPContext *s = h->priv_data; | |
478 | |
579
117ece7c24a6
IPv6 support patch by ("Hans Zandbelt" <Hans.Zandbelt <at> telin {dot} nl>)
michael
parents:
511
diff
changeset
|
479 if (s->is_multicast && !(h->flags & URL_WRONLY)) |
2740
e23eaab1a894
Give better names to multicast functions (they are not IPv6-only)
lucabe
parents:
2739
diff
changeset
|
480 udp_leave_multicast_group(s->udp_fd, (struct sockaddr *)&s->dest_addr); |
0 | 481 closesocket(s->udp_fd); |
482 av_free(s); | |
483 return 0; | |
484 } | |
485 | |
486 URLProtocol udp_protocol = { | |
487 "udp", | |
488 udp_open, | |
489 udp_read, | |
490 udp_write, | |
491 NULL, /* seek */ | |
492 udp_close, | |
4640
b34d9614b887
Add url_get_file_handle(), which is used to get the file descriptor
rbultje
parents:
4331
diff
changeset
|
493 .url_get_file_handle = udp_get_file_handle, |
0 | 494 }; |