aboutsummaryrefslogtreecommitdiff
path: root/src/netbase.h
diff options
context:
space:
mode:
authorMatthew Zipkin <pinheadmz@gmail.com>2023-05-26 14:05:28 -0400
committerMatthew Zipkin <pinheadmz@gmail.com>2024-03-01 14:47:24 -0500
commit74f568cb6fd5c74b7b9bf0ce69876430746a53b1 (patch)
tree80d7146d466dd8ad65925a4515765e5f1a180735 /src/netbase.h
parentbae86c8d318d06818aa75a9ebe3db864197f0bc6 (diff)
downloadbitcoin-74f568cb6fd5c74b7b9bf0ce69876430746a53b1.tar.xz
netbase: allow CreateSock() to create UNIX sockets if supported
Diffstat (limited to 'src/netbase.h')
-rw-r--r--src/netbase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netbase.h b/src/netbase.h
index 6f2d86f153..e772a1c046 100644
--- a/src/netbase.h
+++ b/src/netbase.h
@@ -229,7 +229,7 @@ CService LookupNumeric(const std::string& name, uint16_t portDefault = 0, DNSLoo
CSubNet LookupSubNet(const std::string& subnet_str);
/**
- * Create a socket in the given address family.
+ * Create a TCP or UNIX socket in the given address family.
* @param[in] address_family to use for the socket.
* @return pointer to the created Sock object or unique_ptr that owns nothing in case of failure
*/