| ... | @@ -1573,7 +1573,7 @@ fn dnsParseCallback(ctx: dpc_ctx, rr: u8, data: []const u8, packet: []const u8) | ... | @@ -1573,7 +1573,7 @@ fn dnsParseCallback(ctx: dpc_ctx, rr: u8, data: []const u8, packet: []const u8) |
| 1573 | | 1573 | |
| 1574 | pub const StreamServer = struct { | 1574 | pub const StreamServer = struct { |
| 1575 | /// Copied from `Options` on `init`. | 1575 | /// Copied from `Options` on `init`. |
| 1576 | kernel_backlog: u32, | 1576 | kernel_backlog: u31, |
| 1577 | reuse_address: bool, | 1577 | reuse_address: bool, |
| 1578 | | 1578 | |
| 1579 | /// `undefined` until `listen` returns successfully. | 1579 | /// `undefined` until `listen` returns successfully. |
| ... | @@ -1585,7 +1585,7 @@ pub const StreamServer = struct { | ... | @@ -1585,7 +1585,7 @@ pub const StreamServer = struct { |
| 1585 | /// How many connections the kernel will accept on the application's behalf. | 1585 | /// How many connections the kernel will accept on the application's behalf. |
| 1586 | /// If more than this many connections pool in the kernel, clients will start | 1586 | /// If more than this many connections pool in the kernel, clients will start |
| 1587 | /// seeing "Connection refused". | 1587 | /// seeing "Connection refused". |
| 1588 | kernel_backlog: u32 = 128, | 1588 | kernel_backlog: u31 = 128, |
| 1589 | | 1589 | |
| 1590 | /// Enable SO_REUSEADDR on the socket. | 1590 | /// Enable SO_REUSEADDR on the socket. |
| 1591 | reuse_address: bool = false, | 1591 | reuse_address: bool = false, |