]> git.sesse.net Git - ffmpeg/blob - libavformat/udp.c
mp3enc: fix playback with mp3 encoded files on some devices.
[ffmpeg] / libavformat / udp.c
1 /*
2  * UDP prototype streaming system
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
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
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * UDP protocol
25  */
26
27 #define _BSD_SOURCE     /* Needed for using struct ip_mreq with recent glibc */
28
29 #include "avformat.h"
30 #include "avio_internal.h"
31 #include "libavutil/parseutils.h"
32 #include "libavutil/fifo.h"
33 #include "libavutil/intreadwrite.h"
34 #include "libavutil/avstring.h"
35 #include <unistd.h>
36 #include "internal.h"
37 #include "network.h"
38 #include "os_support.h"
39 #include "url.h"
40
41 #if HAVE_PTHREADS
42 #include <pthread.h>
43 #endif
44
45 #include <sys/time.h>
46
47 #ifndef IPV6_ADD_MEMBERSHIP
48 #define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP
49 #define IPV6_DROP_MEMBERSHIP IPV6_LEAVE_GROUP
50 #endif
51
52 #define UDP_TX_BUF_SIZE 32768
53 #define UDP_MAX_PKT_SIZE 65536
54
55 typedef struct {
56     int udp_fd;
57     int ttl;
58     int buffer_size;
59     int is_multicast;
60     int local_port;
61     int reuse_socket;
62     struct sockaddr_storage dest_addr;
63     int dest_addr_len;
64     int is_connected;
65
66     /* Circular Buffer variables for use in UDP receive code */
67     int circular_buffer_size;
68     AVFifoBuffer *fifo;
69     int circular_buffer_error;
70 #if HAVE_PTHREADS
71     pthread_t circular_buffer_thread;
72     pthread_mutex_t mutex;
73     pthread_cond_t cond;
74 #endif
75     uint8_t tmp[UDP_MAX_PKT_SIZE+4];
76     int remaining_in_dg;
77 } UDPContext;
78
79 static int udp_set_multicast_ttl(int sockfd, int mcastTTL,
80                                  struct sockaddr *addr)
81 {
82 #ifdef IP_MULTICAST_TTL
83     if (addr->sa_family == AF_INET) {
84         if (setsockopt(sockfd, IPPROTO_IP, IP_MULTICAST_TTL, &mcastTTL, sizeof(mcastTTL)) < 0) {
85             av_log(NULL, AV_LOG_ERROR, "setsockopt(IP_MULTICAST_TTL): %s\n", strerror(errno));
86             return -1;
87         }
88     }
89 #endif
90 #if defined(IPPROTO_IPV6) && defined(IPV6_MULTICAST_HOPS)
91     if (addr->sa_family == AF_INET6) {
92         if (setsockopt(sockfd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &mcastTTL, sizeof(mcastTTL)) < 0) {
93             av_log(NULL, AV_LOG_ERROR, "setsockopt(IPV6_MULTICAST_HOPS): %s\n", strerror(errno));
94             return -1;
95         }
96     }
97 #endif
98     return 0;
99 }
100
101 static int udp_join_multicast_group(int sockfd, struct sockaddr *addr)
102 {
103 #ifdef IP_ADD_MEMBERSHIP
104     if (addr->sa_family == AF_INET) {
105         struct ip_mreq mreq;
106
107         mreq.imr_multiaddr.s_addr = ((struct sockaddr_in *)addr)->sin_addr.s_addr;
108         mreq.imr_interface.s_addr= INADDR_ANY;
109         if (setsockopt(sockfd, IPPROTO_IP, IP_ADD_MEMBERSHIP, (const void *)&mreq, sizeof(mreq)) < 0) {
110             av_log(NULL, AV_LOG_ERROR, "setsockopt(IP_ADD_MEMBERSHIP): %s\n", strerror(errno));
111             return -1;
112         }
113     }
114 #endif
115 #if HAVE_STRUCT_IPV6_MREQ && defined(IPPROTO_IPV6)
116     if (addr->sa_family == AF_INET6) {
117         struct ipv6_mreq mreq6;
118
119         memcpy(&mreq6.ipv6mr_multiaddr, &(((struct sockaddr_in6 *)addr)->sin6_addr), sizeof(struct in6_addr));
120         mreq6.ipv6mr_interface= 0;
121         if (setsockopt(sockfd, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP, &mreq6, sizeof(mreq6)) < 0) {
122             av_log(NULL, AV_LOG_ERROR, "setsockopt(IPV6_ADD_MEMBERSHIP): %s\n", strerror(errno));
123             return -1;
124         }
125     }
126 #endif
127     return 0;
128 }
129
130 static int udp_leave_multicast_group(int sockfd, struct sockaddr *addr)
131 {
132 #ifdef IP_DROP_MEMBERSHIP
133     if (addr->sa_family == AF_INET) {
134         struct ip_mreq mreq;
135
136         mreq.imr_multiaddr.s_addr = ((struct sockaddr_in *)addr)->sin_addr.s_addr;
137         mreq.imr_interface.s_addr= INADDR_ANY;
138         if (setsockopt(sockfd, IPPROTO_IP, IP_DROP_MEMBERSHIP, (const void *)&mreq, sizeof(mreq)) < 0) {
139             av_log(NULL, AV_LOG_ERROR, "setsockopt(IP_DROP_MEMBERSHIP): %s\n", strerror(errno));
140             return -1;
141         }
142     }
143 #endif
144 #if HAVE_STRUCT_IPV6_MREQ && defined(IPPROTO_IPV6)
145     if (addr->sa_family == AF_INET6) {
146         struct ipv6_mreq mreq6;
147
148         memcpy(&mreq6.ipv6mr_multiaddr, &(((struct sockaddr_in6 *)addr)->sin6_addr), sizeof(struct in6_addr));
149         mreq6.ipv6mr_interface= 0;
150         if (setsockopt(sockfd, IPPROTO_IPV6, IPV6_DROP_MEMBERSHIP, &mreq6, sizeof(mreq6)) < 0) {
151             av_log(NULL, AV_LOG_ERROR, "setsockopt(IPV6_DROP_MEMBERSHIP): %s\n", strerror(errno));
152             return -1;
153         }
154     }
155 #endif
156     return 0;
157 }
158
159 static struct addrinfo* udp_resolve_host(const char *hostname, int port,
160                                          int type, int family, int flags)
161 {
162     struct addrinfo hints, *res = 0;
163     int error;
164     char sport[16];
165     const char *node = 0, *service = "0";
166
167     if (port > 0) {
168         snprintf(sport, sizeof(sport), "%d", port);
169         service = sport;
170     }
171     if ((hostname) && (hostname[0] != '\0') && (hostname[0] != '?')) {
172         node = hostname;
173     }
174     memset(&hints, 0, sizeof(hints));
175     hints.ai_socktype = type;
176     hints.ai_family   = family;
177     hints.ai_flags = flags;
178     if ((error = getaddrinfo(node, service, &hints, &res))) {
179         res = NULL;
180         av_log(NULL, AV_LOG_ERROR, "udp_resolve_host: %s\n", gai_strerror(error));
181     }
182
183     return res;
184 }
185
186 static int udp_set_url(struct sockaddr_storage *addr,
187                        const char *hostname, int port)
188 {
189     struct addrinfo *res0;
190     int addr_len;
191
192     res0 = udp_resolve_host(hostname, port, SOCK_DGRAM, AF_UNSPEC, 0);
193     if (res0 == 0) return AVERROR(EIO);
194     memcpy(addr, res0->ai_addr, res0->ai_addrlen);
195     addr_len = res0->ai_addrlen;
196     freeaddrinfo(res0);
197
198     return addr_len;
199 }
200
201 static int udp_socket_create(UDPContext *s, struct sockaddr_storage *addr,
202                              int *addr_len, const char *localaddr)
203 {
204     int udp_fd = -1;
205     struct addrinfo *res0 = NULL, *res = NULL;
206     int family = AF_UNSPEC;
207
208     if (((struct sockaddr *) &s->dest_addr)->sa_family)
209         family = ((struct sockaddr *) &s->dest_addr)->sa_family;
210     res0 = udp_resolve_host(localaddr[0] ? localaddr : NULL, s->local_port,
211                             SOCK_DGRAM, family, AI_PASSIVE);
212     if (res0 == 0)
213         goto fail;
214     for (res = res0; res; res=res->ai_next) {
215         udp_fd = socket(res->ai_family, SOCK_DGRAM, 0);
216         if (udp_fd > 0) break;
217         av_log(NULL, AV_LOG_ERROR, "socket: %s\n", strerror(errno));
218     }
219
220     if (udp_fd < 0)
221         goto fail;
222
223     memcpy(addr, res->ai_addr, res->ai_addrlen);
224     *addr_len = res->ai_addrlen;
225
226     freeaddrinfo(res0);
227
228     return udp_fd;
229
230  fail:
231     if (udp_fd >= 0)
232         closesocket(udp_fd);
233     if(res0)
234         freeaddrinfo(res0);
235     return -1;
236 }
237
238 static int udp_port(struct sockaddr_storage *addr, int addr_len)
239 {
240     char sbuf[sizeof(int)*3+1];
241
242     if (getnameinfo((struct sockaddr *)addr, addr_len, NULL, 0,  sbuf, sizeof(sbuf), NI_NUMERICSERV) != 0) {
243         av_log(NULL, AV_LOG_ERROR, "getnameinfo: %s\n", strerror(errno));
244         return -1;
245     }
246
247     return strtol(sbuf, NULL, 10);
248 }
249
250
251 /**
252  * If no filename is given to av_open_input_file because you want to
253  * get the local port first, then you must call this function to set
254  * the remote server address.
255  *
256  * url syntax: udp://host:port[?option=val...]
257  * option: 'ttl=n'       : set the ttl value (for multicast only)
258  *         'localport=n' : set the local port
259  *         'pkt_size=n'  : set max packet size
260  *         'reuse=1'     : enable reusing the socket
261  *
262  * @param h media file context
263  * @param uri of the remote server
264  * @return zero if no error.
265  */
266 int ff_udp_set_remote_url(URLContext *h, const char *uri)
267 {
268     UDPContext *s = h->priv_data;
269     char hostname[256], buf[10];
270     int port;
271     const char *p;
272
273     av_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri);
274
275     /* set the destination address */
276     s->dest_addr_len = udp_set_url(&s->dest_addr, hostname, port);
277     if (s->dest_addr_len < 0) {
278         return AVERROR(EIO);
279     }
280     s->is_multicast = ff_is_multicast_address((struct sockaddr*) &s->dest_addr);
281     p = strchr(uri, '?');
282     if (p) {
283         if (av_find_info_tag(buf, sizeof(buf), "connect", p)) {
284             int was_connected = s->is_connected;
285             s->is_connected = strtol(buf, NULL, 10);
286             if (s->is_connected && !was_connected) {
287                 if (connect(s->udp_fd, (struct sockaddr *) &s->dest_addr,
288                             s->dest_addr_len)) {
289                     s->is_connected = 0;
290                     av_log(h, AV_LOG_ERROR, "connect: %s\n", strerror(errno));
291                     return AVERROR(EIO);
292                 }
293             }
294         }
295     }
296
297     return 0;
298 }
299
300 /**
301  * Return the local port used by the UDP connection
302  * @param h media file context
303  * @return the local port number
304  */
305 int ff_udp_get_local_port(URLContext *h)
306 {
307     UDPContext *s = h->priv_data;
308     return s->local_port;
309 }
310
311 /**
312  * Return the udp file handle for select() usage to wait for several RTP
313  * streams at the same time.
314  * @param h media file context
315  */
316 static int udp_get_file_handle(URLContext *h)
317 {
318     UDPContext *s = h->priv_data;
319     return s->udp_fd;
320 }
321
322 #if HAVE_PTHREADS
323 static void *circular_buffer_task( void *_URLContext)
324 {
325     URLContext *h = _URLContext;
326     UDPContext *s = h->priv_data;
327     fd_set rfds;
328     struct timeval tv;
329
330     for(;;) {
331         int left;
332         int ret;
333         int len;
334
335         if (ff_check_interrupt(&h->interrupt_callback)) {
336             s->circular_buffer_error = EINTR;
337             goto end;
338         }
339
340         FD_ZERO(&rfds);
341         FD_SET(s->udp_fd, &rfds);
342         tv.tv_sec = 1;
343         tv.tv_usec = 0;
344         ret = select(s->udp_fd + 1, &rfds, NULL, NULL, &tv);
345         if (ret < 0) {
346             if (ff_neterrno() == AVERROR(EINTR))
347                 continue;
348             s->circular_buffer_error = EIO;
349             goto end;
350         }
351
352         if (!(ret > 0 && FD_ISSET(s->udp_fd, &rfds)))
353             continue;
354
355         /* How much do we have left to the end of the buffer */
356         /* Whats the minimum we can read so that we dont comletely fill the buffer */
357         left = av_fifo_space(s->fifo);
358
359         /* No Space left, error, what do we do now */
360         if(left < UDP_MAX_PKT_SIZE + 4) {
361             av_log(h, AV_LOG_ERROR, "circular_buffer: OVERRUN\n");
362             s->circular_buffer_error = EIO;
363             goto end;
364         }
365         left = FFMIN(left, s->fifo->end - s->fifo->wptr);
366         len = recv(s->udp_fd, s->tmp+4, sizeof(s->tmp)-4, 0);
367         if (len < 0) {
368             if (ff_neterrno() != AVERROR(EAGAIN) && ff_neterrno() != AVERROR(EINTR)) {
369                 s->circular_buffer_error = EIO;
370                 goto end;
371             }
372             continue;
373         }
374         AV_WL32(s->tmp, len);
375         pthread_mutex_lock(&s->mutex);
376         av_fifo_generic_write(s->fifo, s->tmp, len+4, NULL);
377         pthread_cond_signal(&s->cond);
378         pthread_mutex_unlock(&s->mutex);
379     }
380
381 end:
382     pthread_mutex_lock(&s->mutex);
383     pthread_cond_signal(&s->cond);
384     pthread_mutex_unlock(&s->mutex);
385     return NULL;
386 }
387 #endif
388
389 /* put it in UDP context */
390 /* return non zero if error */
391 static int udp_open(URLContext *h, const char *uri, int flags)
392 {
393     char hostname[1024], localaddr[1024] = "";
394     int port, udp_fd = -1, tmp, bind_ret = -1;
395     UDPContext *s = h->priv_data;
396     int is_output;
397     const char *p;
398     char buf[256];
399     struct sockaddr_storage my_addr;
400     int len;
401     int reuse_specified = 0;
402
403     h->is_streamed = 1;
404     h->max_packet_size = 1472;
405
406     is_output = !(flags & AVIO_FLAG_READ);
407
408     s->ttl = 16;
409     s->buffer_size = is_output ? UDP_TX_BUF_SIZE : UDP_MAX_PKT_SIZE;
410
411     s->circular_buffer_size = 7*188*4096;
412
413     p = strchr(uri, '?');
414     if (p) {
415         if (av_find_info_tag(buf, sizeof(buf), "reuse", p)) {
416             char *endptr = NULL;
417             s->reuse_socket = strtol(buf, &endptr, 10);
418             /* assume if no digits were found it is a request to enable it */
419             if (buf == endptr)
420                 s->reuse_socket = 1;
421             reuse_specified = 1;
422         }
423         if (av_find_info_tag(buf, sizeof(buf), "ttl", p)) {
424             s->ttl = strtol(buf, NULL, 10);
425         }
426         if (av_find_info_tag(buf, sizeof(buf), "localport", p)) {
427             s->local_port = strtol(buf, NULL, 10);
428         }
429         if (av_find_info_tag(buf, sizeof(buf), "pkt_size", p)) {
430             h->max_packet_size = strtol(buf, NULL, 10);
431         }
432         if (av_find_info_tag(buf, sizeof(buf), "buffer_size", p)) {
433             s->buffer_size = strtol(buf, NULL, 10);
434         }
435         if (av_find_info_tag(buf, sizeof(buf), "connect", p)) {
436             s->is_connected = strtol(buf, NULL, 10);
437         }
438         if (av_find_info_tag(buf, sizeof(buf), "fifo_size", p)) {
439             s->circular_buffer_size = strtol(buf, NULL, 10)*188;
440         }
441         if (av_find_info_tag(buf, sizeof(buf), "localaddr", p)) {
442             av_strlcpy(localaddr, buf, sizeof(localaddr));
443         }
444     }
445
446     /* fill the dest addr */
447     av_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri);
448
449     /* XXX: fix av_url_split */
450     if (hostname[0] == '\0' || hostname[0] == '?') {
451         /* only accepts null hostname if input */
452         if (!(flags & AVIO_FLAG_READ))
453             goto fail;
454     } else {
455         if (ff_udp_set_remote_url(h, uri) < 0)
456             goto fail;
457     }
458
459     if ((s->is_multicast || !s->local_port) && (h->flags & AVIO_FLAG_READ))
460         s->local_port = port;
461     udp_fd = udp_socket_create(s, &my_addr, &len, localaddr);
462     if (udp_fd < 0)
463         goto fail;
464
465     /* Follow the requested reuse option, unless it's multicast in which
466      * case enable reuse unless explicitly disabled.
467      */
468     if (s->reuse_socket || (s->is_multicast && !reuse_specified)) {
469         s->reuse_socket = 1;
470         if (setsockopt (udp_fd, SOL_SOCKET, SO_REUSEADDR, &(s->reuse_socket), sizeof(s->reuse_socket)) != 0)
471             goto fail;
472     }
473
474     /* the bind is needed to give a port to the socket now */
475     /* if multicast, try the multicast address bind first */
476     if (s->is_multicast && (h->flags & AVIO_FLAG_READ)) {
477         bind_ret = bind(udp_fd,(struct sockaddr *)&s->dest_addr, len);
478     }
479     /* bind to the local address if not multicast or if the multicast
480      * bind failed */
481     if (bind_ret < 0 && bind(udp_fd,(struct sockaddr *)&my_addr, len) < 0)
482         goto fail;
483
484     len = sizeof(my_addr);
485     getsockname(udp_fd, (struct sockaddr *)&my_addr, &len);
486     s->local_port = udp_port(&my_addr, len);
487
488     if (s->is_multicast) {
489         if (!(h->flags & AVIO_FLAG_READ)) {
490             /* output */
491             if (udp_set_multicast_ttl(udp_fd, s->ttl, (struct sockaddr *)&s->dest_addr) < 0)
492                 goto fail;
493         } else {
494             /* input */
495             if (udp_join_multicast_group(udp_fd, (struct sockaddr *)&s->dest_addr) < 0)
496                 goto fail;
497         }
498     }
499
500     if (is_output) {
501         /* limit the tx buf size to limit latency */
502         tmp = s->buffer_size;
503         if (setsockopt(udp_fd, SOL_SOCKET, SO_SNDBUF, &tmp, sizeof(tmp)) < 0) {
504             av_log(h, AV_LOG_ERROR, "setsockopt(SO_SNDBUF): %s\n", strerror(errno));
505             goto fail;
506         }
507     } else {
508         /* set udp recv buffer size to the largest possible udp packet size to
509          * avoid losing data on OSes that set this too low by default. */
510         tmp = s->buffer_size;
511         if (setsockopt(udp_fd, SOL_SOCKET, SO_RCVBUF, &tmp, sizeof(tmp)) < 0) {
512             av_log(h, AV_LOG_WARNING, "setsockopt(SO_RECVBUF): %s\n", strerror(errno));
513         }
514         /* make the socket non-blocking */
515         ff_socket_nonblock(udp_fd, 1);
516     }
517     if (s->is_connected) {
518         if (connect(udp_fd, (struct sockaddr *) &s->dest_addr, s->dest_addr_len)) {
519             av_log(h, AV_LOG_ERROR, "connect: %s\n", strerror(errno));
520             goto fail;
521         }
522     }
523
524     s->udp_fd = udp_fd;
525
526 #if HAVE_PTHREADS
527     if (!is_output && s->circular_buffer_size) {
528         /* start the task going */
529         s->fifo = av_fifo_alloc(s->circular_buffer_size);
530         pthread_mutex_init(&s->mutex, NULL);
531         pthread_cond_init(&s->cond, NULL);
532         if (pthread_create(&s->circular_buffer_thread, NULL, circular_buffer_task, h)) {
533             av_log(h, AV_LOG_ERROR, "pthread_create failed\n");
534             goto fail;
535         }
536     }
537 #endif
538
539     return 0;
540  fail:
541     if (udp_fd >= 0)
542         closesocket(udp_fd);
543     av_fifo_free(s->fifo);
544     return AVERROR(EIO);
545 }
546
547 static int udp_read(URLContext *h, uint8_t *buf, int size)
548 {
549     UDPContext *s = h->priv_data;
550     int ret;
551     int avail;
552
553 #if HAVE_PTHREADS
554     if (s->fifo) {
555         pthread_mutex_lock(&s->mutex);
556         do {
557             avail = av_fifo_size(s->fifo);
558             if (avail) { // >=size) {
559                 uint8_t tmp[4];
560                 pthread_mutex_unlock(&s->mutex);
561
562                 av_fifo_generic_read(s->fifo, tmp, 4, NULL);
563                 avail= AV_RL32(tmp);
564                 if(avail > size){
565                     av_log(h, AV_LOG_WARNING, "Part of datagram lost due to insufficient buffer size\n");
566                     avail= size;
567                 }
568
569                 av_fifo_generic_read(s->fifo, buf, avail, NULL);
570                 av_fifo_drain(s->fifo, AV_RL32(tmp) - avail);
571                 return avail;
572             } else if(s->circular_buffer_error){
573                 pthread_mutex_unlock(&s->mutex);
574                 return s->circular_buffer_error;
575             } else if(h->flags & AVIO_FLAG_NONBLOCK) {
576                 pthread_mutex_unlock(&s->mutex);
577                 return AVERROR(EAGAIN);
578             }
579             else {
580                 pthread_cond_wait(&s->cond, &s->mutex);
581             }
582         } while( 1);
583     }
584 #endif
585
586     if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
587         ret = ff_network_wait_fd(s->udp_fd, 0);
588         if (ret < 0)
589             return ret;
590     }
591     ret = recv(s->udp_fd, buf, size, 0);
592
593     return ret < 0 ? ff_neterrno() : ret;
594 }
595
596 static int udp_write(URLContext *h, const uint8_t *buf, int size)
597 {
598     UDPContext *s = h->priv_data;
599     int ret;
600
601     if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
602         ret = ff_network_wait_fd(s->udp_fd, 1);
603         if (ret < 0)
604             return ret;
605     }
606
607     if (!s->is_connected) {
608         ret = sendto (s->udp_fd, buf, size, 0,
609                       (struct sockaddr *) &s->dest_addr,
610                       s->dest_addr_len);
611     } else
612         ret = send(s->udp_fd, buf, size, 0);
613
614     return ret < 0 ? ff_neterrno() : ret;
615 }
616
617 static int udp_close(URLContext *h)
618 {
619     UDPContext *s = h->priv_data;
620
621     if (s->is_multicast && (h->flags & AVIO_FLAG_READ))
622         udp_leave_multicast_group(s->udp_fd, (struct sockaddr *)&s->dest_addr);
623     closesocket(s->udp_fd);
624     av_fifo_free(s->fifo);
625 #if HAVE_PTHREADS
626     pthread_mutex_destroy(&s->mutex);
627     pthread_cond_destroy(&s->cond);
628 #endif
629     return 0;
630 }
631
632 URLProtocol ff_udp_protocol = {
633     .name                = "udp",
634     .url_open            = udp_open,
635     .url_read            = udp_read,
636     .url_write           = udp_write,
637     .url_close           = udp_close,
638     .url_get_file_handle = udp_get_file_handle,
639     .priv_data_size      = sizeof(UDPContext),
640 };