Skip to content

Commit

Permalink
update epoxy
Browse files Browse the repository at this point in the history
  • Loading branch information
Endercass committed Jan 16, 2025
1 parent 5639f19 commit 223af02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x86_image_wizard/epoxy
Submodule epoxy updated 55 files
+0 −5 .cargo/config.toml
+508 −244 Cargo.lock
+9 −0 Cargo.toml
+4 −40 README.md
+1 −0 client/.npmignore
+8 −5 client/Cargo.toml
+61 −0 client/README.md
+9 −7 client/build.sh
+270 −224 client/demo.js
+1 −1 client/package.json
+1 −1 client/src/io_stream.rs
+116 −99 client/src/lib.rs
+51 −29 client/src/stream_provider.rs
+1 −1 client/src/tokioio.rs
+0 −484 client/src/utils.rs
+215 −0 client/src/utils/js.rs
+199 −0 client/src/utils/mod.rs
+143 −0 client/src/utils/rustls.rs
+1 −1 client/src/websocket.rs
+30 −40 client/src/ws_wrapper.rs
+1 −0 clippy.toml
+11 −4 server/Cargo.toml
+2 −4 server/README.md
+2 −2 server/flamegraph.svg
+51 −11 server/src/config.rs
+220 −114 server/src/handle/wisp/mod.rs
+17 −14 server/src/handle/wisp/twisp.rs
+252 −0 server/src/handle/wisp/wispnet.rs
+99 −20 server/src/handle/wsproxy.rs
+5 −5 server/src/listener.rs
+123 −80 server/src/main.rs
+111 −48 server/src/route.rs
+35 −31 server/src/stats.rs
+85 −9 server/src/stream.rs
+89 −0 server/src/upgrade.rs
+101 −0 server/src/util_chain.rs
+4 −0 simple-wisp-client/Cargo.toml
+53 −26 simple-wisp-client/src/main.rs
+6 −2 wisp/Cargo.toml
+27 −23 wisp/src/extensions/cert.rs
+17 −15 wisp/src/extensions/mod.rs
+6 −5 wisp/src/extensions/motd.rs
+23 −20 wisp/src/extensions/password.rs
+6 −5 wisp/src/extensions/udp.rs
+26 −32 wisp/src/fastwebsockets.rs
+9 −12 wisp/src/generic.rs
+3 −3 wisp/src/lib.rs
+37 −25 wisp/src/mux/client.rs
+135 −99 wisp/src/mux/inner.rs
+7 −6 wisp/src/mux/mod.rs
+35 −23 wisp/src/mux/server.rs
+15 −7 wisp/src/packet.rs
+11 −8 wisp/src/stream/compat.rs
+51 −44 wisp/src/stream/mod.rs
+340 −76 wisp/src/ws.rs

0 comments on commit 223af02

Please sign in to comment.