mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
udp: use socklen_t where appropriate rather than custom type
In particular, fixes Cygwin build where socklen_t is defined as int in line with native win32 api definition.
This commit is contained in:
parent
cb76a13cc9
commit
7def8c9b98
3 changed files with 5 additions and 13 deletions
|
@ -913,11 +913,7 @@ gst_multiudpsink_init_send (GstMultiUDPSink * sink)
|
|||
GList *clients;
|
||||
GstUDPClient *client;
|
||||
int sndsize, ret;
|
||||
#ifdef G_OS_WIN32
|
||||
gint len;
|
||||
#else
|
||||
guint len;
|
||||
#endif
|
||||
socklen_t len;
|
||||
|
||||
if (sink->sockfd == -1) {
|
||||
GST_DEBUG_OBJECT (sink, "creating sockets");
|
||||
|
|
|
@ -32,6 +32,9 @@
|
|||
#define WINVER 0x0501
|
||||
#include <winsock2.h>
|
||||
#include <ws2tcpip.h>
|
||||
#ifndef socklen_t
|
||||
#define socklen_t int
|
||||
#endif
|
||||
|
||||
/* Needed for GstObject and GST_WARNING_OBJECT */
|
||||
#include <gst/gstobject.h>
|
||||
|
|
|
@ -117,9 +117,6 @@
|
|||
#endif
|
||||
|
||||
#include <gst/netbuffer/gstnetbuffer.h>
|
||||
#ifdef G_OS_WIN32
|
||||
typedef int socklen_t;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_FIONREAD_IN_SYS_FILIO
|
||||
#include <sys/filio.h>
|
||||
|
@ -778,11 +775,7 @@ gst_udpsrc_start (GstBaseSrc * bsrc)
|
|||
gint ret;
|
||||
int rcvsize;
|
||||
struct sockaddr_storage bind_address;
|
||||
#ifdef G_OS_WIN32
|
||||
gint len;
|
||||
#else
|
||||
guint len;
|
||||
#endif
|
||||
socklen_t len;
|
||||
src = GST_UDPSRC (bsrc);
|
||||
|
||||
if (src->sockfd == -1) {
|
||||
|
|
Loading…
Reference in a new issue