diff options
author | Max Kellermann <max@musicpd.org> | 2019-03-20 12:57:26 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2019-03-20 12:57:26 +0100 |
commit | 4f408bd952e3ddac2168ddbd2ca2c88a561bf91f (patch) | |
tree | 20a6c0c65a2580852382ce19be7c180d5f565f75 /src/config | |
parent | 7de8fd04a4dfbd0dbc1d021f3d096724069cde2b (diff) |
event/ServerSocket, doc, ...: refer to AF_LOCAL as "local socket"
.. and not "UNIX domain socket. Be consistent about the naming.
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/Net.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/config/Net.hxx b/src/config/Net.hxx index 2b40d966c..b077f883e 100644 --- a/src/config/Net.hxx +++ b/src/config/Net.hxx @@ -23,14 +23,14 @@ class ServerSocket; /** - * Sets the address or unix socket of a ServerSocket instance + * Sets the address or local socket of a ServerSocket instance * There are three possible ways * 1) Set address to a valid ip address and specify port. * server_socket will listen on this address/port tuple. * 2) Set address to null and specify port. * server_socket will listen on ANY address on that port. - * 3) Set address to a path of a unix socket. port is ignored. - * server_socket will listen on this unix socket. + * 3) Set address to a path of a local socket. port is ignored. + * server_socket will listen on this local socket. * * Throws #std::runtime_error on error. * |