diff options
author | 2022-10-11 01:44:14 -0700 | |
---|---|---|
committer | 2022-10-11 01:44:14 -0700 | |
commit | 51c1d18e689b9180e85df9f91f9bda4e34654b44 (patch) | |
tree | 37139f15c2503fecf2dbcc252d758cfcdff9a089 | |
parent | af6476ca7412a6708fa449a9c1622ae57314ca78 (diff) | |
download | bun-51c1d18e689b9180e85df9f91f9bda4e34654b44.tar.gz bun-51c1d18e689b9180e85df9f91f9bda4e34654b44.tar.zst bun-51c1d18e689b9180e85df9f91f9bda4e34654b44.zip |
Update server.zig
Diffstat (limited to '')
-rw-r--r-- | src/bun.js/api/server.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/api/server.zig b/src/bun.js/api/server.zig index d0910015a..11400dde5 100644 --- a/src/bun.js/api/server.zig +++ b/src/bun.js/api/server.zig @@ -2437,7 +2437,7 @@ pub fn NewServer(comptime ssl_enabled_: bool, comptime debug_mode_: bool) type { return; } - pub fn onListen(this: *ThisServer, socket: ?*App.ListenSocket, _: uws.uws_app_listen_config_t) void { + pub fn onListen(this: *ThisServer, socket: ?*App.ListenSocket) void { if (socket == null) { return this.onListenFailed(); } |