Commit 1bb0124b authored by Max Kellermann's avatar Max Kellermann

listen: allocate sockaddr_storage struct for accept()

The generic sockaddr struct is too small for some addresses. For accept(), we have to allocate a sockaddr_storage struct on the stack, which is large enough for all addresses.
parent 5c10d2de
......@@ -41,6 +41,7 @@ ver 0.15 - (200?/??/??)
* playlist: recalculate the queued song after random is toggled
* playlist: don't unpause on delete
* daemon: ignore "user" setting if already running as that user
* listen: fix broken client IP addresses in log
ver 0.14.2 (2009/02/13)
......
......@@ -448,14 +448,15 @@ listen_in_event(G_GNUC_UNUSED GIOChannel *source,
gpointer data)
{
int listen_fd = GPOINTER_TO_INT(data), fd;
struct sockaddr sockAddr;
socklen_t socklen = sizeof(sockAddr);
struct sockaddr_storage sa;
socklen_t sa_length = sizeof(sa);
fd = accept(listen_fd, &sockAddr, &socklen);
fd = accept(listen_fd, (struct sockaddr*)&sa, &sa_length);
if (fd >= 0) {
set_nonblocking(fd);
client_new(fd, &sockAddr, socklen, get_remote_uid(fd));
client_new(fd, (struct sockaddr*)&sa, sa_length,
get_remote_uid(fd));
} else if (fd < 0 && errno != EINTR) {
g_warning("Problems accept()'ing");
}
......
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