Commit be2efe0c authored by Mans Rullgard's avatar Mans Rullgard

udp: use socklen_t where appropriate

getsockname() takes a pointer to socklen_t which is not necessarily
int.
Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent 9efbfe57
...@@ -257,7 +257,7 @@ static int udp_set_url(struct sockaddr_storage *addr, ...@@ -257,7 +257,7 @@ static int udp_set_url(struct sockaddr_storage *addr,
} }
static int udp_socket_create(UDPContext *s, struct sockaddr_storage *addr, static int udp_socket_create(UDPContext *s, struct sockaddr_storage *addr,
int *addr_len, const char *localaddr) socklen_t *addr_len, const char *localaddr)
{ {
int udp_fd = -1; int udp_fd = -1;
struct addrinfo *res0 = NULL, *res = NULL; struct addrinfo *res0 = NULL, *res = NULL;
...@@ -389,7 +389,7 @@ static int udp_open(URLContext *h, const char *uri, int flags) ...@@ -389,7 +389,7 @@ static int udp_open(URLContext *h, const char *uri, int flags)
const char *p; const char *p;
char buf[256]; char buf[256];
struct sockaddr_storage my_addr; struct sockaddr_storage my_addr;
int len; socklen_t len;
int reuse_specified = 0; int reuse_specified = 0;
int i, include = 0, num_sources = 0; int i, include = 0, num_sources = 0;
char *sources[32]; char *sources[32];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment