From 0c1906cd4d077467ad40b0db52efc1cfb546aeb0 Mon Sep 17 00:00:00 2001 From: Regis Caillaud <35006197+Clonkk@users.noreply.github.com> Date: Fri, 15 Dec 2023 11:42:47 +0100 Subject: [PATCH] don't export alive field --- zmq/connections.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zmq/connections.nim b/zmq/connections.nim index 06a534e..789414c 100644 --- a/zmq/connections.nim +++ b/zmq/connections.nim @@ -16,7 +16,7 @@ type context*: ZContext ## Zmq context. Can be 'owned' by another connection (useful for inproc protocol). socket*: ZSocket ## Embedded socket. ownctx: bool ## Boolean indicating if the connection owns the Zmq context - alive*: bool ## Boolean indicating if the connection has been closed + alive: bool ## Boolean indicating if the connection has been closed sockaddr: string ## Address of the embedded socket ZConnection * = ref ZConnectionImpl