From 9ffc73119e33caf90860fa3659185778fc58eaf9 Mon Sep 17 00:00:00 2001
From: mahyarwd <mahyar.ghaedi@workday.com>
Date: Mon, 30 Jan 2023 18:47:25 +0100
Subject: [PATCH] Change let to var

---
 Sources/TCPSocket.swift | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Sources/TCPSocket.swift b/Sources/TCPSocket.swift
index 7a02492..ef40d37 100644
--- a/Sources/TCPSocket.swift
+++ b/Sources/TCPSocket.swift
@@ -11,7 +11,7 @@ import Foundation
 /// Class wrapping around TCP/IPv6 socket
 public final class TCPSocket {
     /// The file descriptor number for socket
-    let fileDescriptor: Int32
+    var fileDescriptor: Int32
 
     /// Whether is this socket in block mode or not
     var blocking: Bool {