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