Skip to content

Commit b014f8f

Browse files
authored
Remove linger options (#110)
1 parent b14f971 commit b014f8f

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

lib/thousand_island/transports/ssl.ex

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ defmodule ThousandIsland.Transports.SSL do
2323
```elixir
2424
backlog: 1024,
2525
nodelay: true,
26-
linger: {true, 30},
2726
send_timeout: 30_000,
2827
send_timeout_close: true,
2928
reuseaddr: true
@@ -53,7 +52,6 @@ defmodule ThousandIsland.Transports.SSL do
5352
default_options = [
5453
backlog: 1024,
5554
nodelay: true,
56-
linger: {true, 30},
5755
send_timeout: 30_000,
5856
send_timeout_close: true,
5957
reuseaddr: true

lib/thousand_island/transports/tcp.ex

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ defmodule ThousandIsland.Transports.TCP do
2121
```elixir
2222
backlog: 1024,
2323
nodelay: true,
24-
linger: {true, 30},
2524
send_timeout: 30_000,
2625
send_timeout_close: true,
2726
reuseaddr: true
@@ -51,7 +50,6 @@ defmodule ThousandIsland.Transports.TCP do
5150
default_options = [
5251
backlog: 1024,
5352
nodelay: true,
54-
linger: {true, 30},
5553
send_timeout: 30_000,
5654
send_timeout_close: true,
5755
reuseaddr: true

0 commit comments

Comments
 (0)