From f5ef64b4ef7fc3a8da774806cac53b7b779bd6b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20M=C3=BCller?= Date: Mon, 31 May 2021 17:27:29 +0200 Subject: [PATCH] Change protocol socket fd to Socket::Handle --- src/socket/tcp_server.cr | 2 +- src/socket/tcp_socket.cr | 4 ++-- src/socket/unix_server.cr | 2 +- src/socket/unix_socket.cr | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/socket/tcp_server.cr b/src/socket/tcp_server.cr index 56f895c12cda..4bd1ebbdccef 100644 --- a/src/socket/tcp_server.cr +++ b/src/socket/tcp_server.cr @@ -49,7 +49,7 @@ class TCPServer < TCPSocket end # Creates a TCPServer from an already configured raw file descriptor - def initialize(*, fd : Int32, family : Family = Family::INET) + def initialize(*, fd : Handle, family : Family = Family::INET) super(fd: fd, family: family) end diff --git a/src/socket/tcp_socket.cr b/src/socket/tcp_socket.cr index b57a3aabf1e5..8a15ecf19239 100644 --- a/src/socket/tcp_socket.cr +++ b/src/socket/tcp_socket.cr @@ -38,12 +38,12 @@ class TCPSocket < IPSocket super family, type, protocol end - protected def initialize(fd : Int32, family : Family, type : Type, protocol : Protocol) + protected def initialize(fd : Handle, family : Family, type : Type, protocol : Protocol) super fd, family, type, protocol end # Creates a TCPSocket from an already configured raw file descriptor - def initialize(*, fd : Int32, family : Family = Family::INET) + def initialize(*, fd : Handle, family : Family = Family::INET) super fd, family, Type::STREAM, Protocol::TCP end diff --git a/src/socket/unix_server.cr b/src/socket/unix_server.cr index cc79ef35d20d..4dc6bb137cac 100644 --- a/src/socket/unix_server.cr +++ b/src/socket/unix_server.cr @@ -46,7 +46,7 @@ class UNIXServer < UNIXSocket end # Creates a UNIXServer from an already configured raw file descriptor - def initialize(*, fd : Int32, type : Type = Type::STREAM, @path : String? = nil) + def initialize(*, fd : Handle, type : Type = Type::STREAM, @path : String? = nil) super(fd: fd, type: type, path: @path) end diff --git a/src/socket/unix_socket.cr b/src/socket/unix_socket.cr index 940b2cc3f589..7b0d8beae83f 100644 --- a/src/socket/unix_socket.cr +++ b/src/socket/unix_socket.cr @@ -29,7 +29,7 @@ class UNIXSocket < Socket end # Creates a UNIXSocket from an already configured raw file descriptor - def initialize(*, fd : Int32, type : Type = Type::STREAM, @path : String? = nil) + def initialize(*, fd : Handle, type : Type = Type::STREAM, @path : String? = nil) super fd, Family::UNIX, type, Protocol::IP end