diff options
author | Max Kellermann <max@duempel.org> | 2008-04-12 04:07:24 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-04-12 04:07:24 +0000 |
commit | 86d6ba077b8d183914eec1f970ddaf077b574f4b (patch) | |
tree | b5a50e018f06200a5357e12d86df8cdec92a7e47 /src/interface.c | |
parent | d4f319deafc41d000c7e249e1acfe9626dec52a8 (diff) | |
download | mpd-86d6ba077b8d183914eec1f970ddaf077b574f4b.tar.gz mpd-86d6ba077b8d183914eec1f970ddaf077b574f4b.tar.xz mpd-86d6ba077b8d183914eec1f970ddaf077b574f4b.zip |
provide switches for TCP and unix sockets
autoconf flags for enabling and disabling TCP and unix domain socket
support. Embedded machines without a TCP stack may be better off
without TCP support.
git-svn-id: https://svn.musicpd.org/mpd/trunk@7236 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/interface.c')
-rw-r--r-- | src/interface.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/interface.c b/src/interface.c index 43c8b3654..df9eb63f7 100644 --- a/src/interface.c +++ b/src/interface.c @@ -245,6 +245,7 @@ void openAInterface(int fd, struct sockaddr *addr) } else { const char *hostname; switch (addr->sa_family) { +#ifdef HAVE_TCP case AF_INET: hostname = (const char *)inet_ntoa(((struct sockaddr_in *) addr)->sin_addr); @@ -267,9 +268,12 @@ void openAInterface(int fd, struct sockaddr *addr) } break; #endif +#endif /* HAVE_TCP */ +#ifdef HAVE_UN case AF_UNIX: hostname = "local connection"; break; +#endif /* HAVE_UN */ default: hostname = "unknown"; } |