aboutsummaryrefslogtreecommitdiff
path: root/docs/ref/tran/ipc.md
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2025-01-03 08:02:22 -0800
committerGarrett D'Amore <garrett@damore.org>2025-01-03 08:38:19 -0800
commit960e96723f6cfe64c370b7c1168c664f4c49deae (patch)
treeb342ee0f9888daf0783d8b8c7663a7b3a8cf266d /docs/ref/tran/ipc.md
parent86d073f3a7511b3045f5b183954eb6cd633fe930 (diff)
downloadnng-960e96723f6cfe64c370b7c1168c664f4c49deae.tar.gz
nng-960e96723f6cfe64c370b7c1168c664f4c49deae.tar.bz2
nng-960e96723f6cfe64c370b7c1168c664f4c49deae.zip
fixes #2061 Move IPC parameters from uint64 to int
Diffstat (limited to 'docs/ref/tran/ipc.md')
-rw-r--r--docs/ref/tran/ipc.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/ref/tran/ipc.md b/docs/ref/tran/ipc.md
index 6c5cb104..3d046ee5 100644
--- a/docs/ref/tran/ipc.md
+++ b/docs/ref/tran/ipc.md
@@ -81,10 +81,10 @@ where supported by the underlying platform.
| `NNG_OPT_IPC_PERMISSIONS` | `int` | Settable on listeners before they start, this is the UNIX file mode used when creating the socket. |
| `NNG_OPT_LOCADDR` | [`nng_sockaddr`] | Local socket address, either [`nng_sockaddr_ipc`] or [`nng_sockaddr_abstract`]. |
| `NNG_OPT_REMADDR` | [`nng_sockaddr`] | Remote socket address, either [`nng_sockaddr_ipc`] or [`nng_sockaddr_abstract`]. |
-| `NNG_OPT_PEER_GID` | `uint64_t` | Read only option, returns the group ID of the process at the other end of the socket, if platform supports it. |
-| `NNG_OPT_PEER_PID` | `uint64_t` | Read only option, returns the processed ID of the process at the other end of the socket, if platform supports it. |
-| `NNG_OPT_PEER_UID` | `uint64_t` | Read only option, returns the user ID of the process at the other end of the socket, if platform supports it. |
-| `NNG_OPT_PEER_ZONEID` | `uint64_t` | Read only option, returns the zone ID of the process at the other end of the socket, if platform supports it. |
+| `NNG_OPT_PEER_GID` | `int` | Read only option, returns the group ID of the process at the other end of the socket, if platform supports it. |
+| `NNG_OPT_PEER_PID` | `int` | Read only option, returns the processed ID of the process at the other end of the socket, if platform supports it. |
+| `NNG_OPT_PEER_UID` | `int` | Read only option, returns the user ID of the process at the other end of the socket, if platform supports it. |
+| `NNG_OPT_PEER_ZONEID` | `int` | Read only option, returns the zone ID of the process at the other end of the socket, if platform supports it. |
| [`NNG_OPT_LISTEN_FD`] | `int` | Write only for listeners before they start, use the named socket for accepting (for use with socket activation). |
### Other Configuration Parameters