diff --git a/lib/thousand_island/transports/ssl.ex b/lib/thousand_island/transports/ssl.ex index 6e6735d..4d410fe 100644 --- a/lib/thousand_island/transports/ssl.ex +++ b/lib/thousand_island/transports/ssl.ex @@ -23,7 +23,6 @@ defmodule ThousandIsland.Transports.SSL do ```elixir backlog: 1024, nodelay: true, - linger: {true, 30}, send_timeout: 30_000, send_timeout_close: true, reuseaddr: true @@ -53,7 +52,6 @@ defmodule ThousandIsland.Transports.SSL do default_options = [ backlog: 1024, nodelay: true, - linger: {true, 30}, send_timeout: 30_000, send_timeout_close: true, reuseaddr: true diff --git a/lib/thousand_island/transports/tcp.ex b/lib/thousand_island/transports/tcp.ex index dd27baa..ee73186 100644 --- a/lib/thousand_island/transports/tcp.ex +++ b/lib/thousand_island/transports/tcp.ex @@ -21,7 +21,6 @@ defmodule ThousandIsland.Transports.TCP do ```elixir backlog: 1024, nodelay: true, - linger: {true, 30}, send_timeout: 30_000, send_timeout_close: true, reuseaddr: true @@ -51,7 +50,6 @@ defmodule ThousandIsland.Transports.TCP do default_options = [ backlog: 1024, nodelay: true, - linger: {true, 30}, send_timeout: 30_000, send_timeout_close: true, reuseaddr: true