summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2023-04-13 15:14:30 +0200
committerGitHub <noreply@github.com>2023-04-13 15:14:30 +0200
commitaa2946513b85161f732963d1b7e30d0fe7d00d79 (patch)
treea47ff69a5e2e7fe8fc1eb5fe4a979f727a800e2c /docs
parent0dde184075f81a9b6e22caa7255396d21ae63769 (diff)
downloadpsutil-aa2946513b85161f732963d1b7e30d0fe7d00d79.tar.gz
OpenBSD: rewrite net_connections() from scratch (#2230)
Diffstat (limited to 'docs')
-rw-r--r--docs/index.rst19
1 files changed, 9 insertions, 10 deletions
diff --git a/docs/index.rst b/docs/index.rst
index 119102a8..c722ee21 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -659,19 +659,18 @@ Network
(Solaris) UNIX sockets are not supported.
.. note::
- (Linux, FreeBSD) "raddr" field for UNIX sockets is always set to "".
- This is a limitation of the OS.
-
- .. note::
- (OpenBSD) "laddr" and "raddr" fields for UNIX sockets are always set to
- "". This is a limitation of the OS.
+ (Linux, FreeBSD, OpenBSD) *raddr* field for UNIX sockets is always set to
+ ``""`` (empty string). This is a limitation of the OS.
.. versionadded:: 2.1.0
.. versionchanged:: 5.3.0 : socket "fd" is now set for real instead of being
``-1``.
- .. versionchanged:: 5.3.0 : "laddr" and "raddr" are named tuples.
+ .. versionchanged:: 5.3.0 : *laddr* and *raddr* are named tuples.
+
+ .. versionchanged:: 5.9.5 : OpenBSD: retrieve *laddr* path for AF_UNIX
+ sockets (before it was an empty string).
.. function:: net_if_addrs()
@@ -1943,18 +1942,18 @@ Process class
(Solaris) UNIX sockets are not supported.
.. note::
- (Linux, FreeBSD) "raddr" field for UNIX sockets is always set to "".
+ (Linux, FreeBSD) *raddr* field for UNIX sockets is always set to "".
This is a limitation of the OS.
.. note::
- (OpenBSD) "laddr" and "raddr" fields for UNIX sockets are always set to
+ (OpenBSD) *laddr* and *raddr* fields for UNIX sockets are always set to
"". This is a limitation of the OS.
.. note::
(AIX) :class:`psutil.AccessDenied` is always raised unless running
as root (lsof does the same).
- .. versionchanged:: 5.3.0 : "laddr" and "raddr" are named tuples.
+ .. versionchanged:: 5.3.0 : *laddr* and *raddr* are named tuples.
.. method:: is_running()