From b6f506757a38b78bcd54aff304488be0b52675a6 Mon Sep 17 00:00:00 2001 From: Karchnu Date: Tue, 14 Jul 2020 13:51:33 +0200 Subject: [PATCH] A client can have a connected server or not. --- src/ipc/client.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ipc/client.cr b/src/ipc/client.cr index 74d962c..705047c 100644 --- a/src/ipc/client.cr +++ b/src/ipc/client.cr @@ -1,6 +1,6 @@ class IPC::Client < IPC::Context - property server_fd : Int32 + property server_fd : Int32? # By default, this is a client. def initialize(service_name : String)