gitextract_gqzuybd4/ ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README-en.md ├── README.md ├── assest.json ├── build.sh ├── fmt.sh ├── go.mod ├── go.sum ├── main.go ├── res/ │ ├── conf/ │ │ └── demo.conf │ ├── css/ │ │ ├── flat.css │ │ └── style.css │ ├── js/ │ │ ├── base64.js │ │ ├── default.js │ │ ├── jquery.js │ │ ├── session.js │ │ └── socket.io.js │ ├── private/ │ │ ├── client_cert.pem │ │ └── server_key.pem │ ├── sjs/ │ │ └── req_rewrite.js │ ├── tpl/ │ │ ├── about.html │ │ ├── config/ │ │ │ ├── req_demo.html │ │ │ └── req_form.html │ │ ├── config.html │ │ ├── error.html │ │ ├── file.html │ │ ├── file_edit.html │ │ ├── file_new.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── network.html │ │ ├── replay.html │ │ ├── replay_direct.html │ │ └── useage.html │ └── version ├── script/ │ ├── create_dest_zip.sh │ ├── pproxy_control.sh │ └── windows_run.bat └── serve/ ├── assest.go ├── auth.go ├── broadcast.go ├── certs.go ├── config.go ├── init.go ├── kvStore.go ├── proxy.go ├── reqCtx.go ├── req_modifer.go ├── req_replay.go ├── req_rewrite.go ├── serve.go ├── sessions.go ├── util.go ├── web.go ├── web_file.go ├── wsClient.go └── wsServer.go