gitextract_mkgu5c8j/ ├── .gitignore ├── AUTHORS ├── CHANGES ├── LICENSE ├── Makefile ├── README.md ├── config.go ├── examples/ │ ├── bash/ │ │ ├── README.txt │ │ ├── chat.sh │ │ ├── count.sh │ │ ├── dump-env.sh │ │ ├── greeter.sh │ │ └── send-receive.sh │ ├── c#/ │ │ ├── .gitignore │ │ ├── Count/ │ │ │ ├── App.config │ │ │ ├── Count.csproj │ │ │ ├── Program.cs │ │ │ └── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Echo/ │ │ │ ├── App.config │ │ │ ├── Echo.csproj │ │ │ ├── Program.cs │ │ │ └── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Examples.sln │ │ ├── README.md │ │ ├── run_count.cmd │ │ └── run_echo.cmd │ ├── cgi-bin/ │ │ ├── README.txt │ │ └── dump-env.sh │ ├── f#/ │ │ ├── .gitignore │ │ ├── Count/ │ │ │ ├── App.config │ │ │ ├── Count.fsproj │ │ │ └── Program.fs │ │ ├── Echo/ │ │ │ ├── App.config │ │ │ ├── Echo.fsproj │ │ │ └── Program.fs │ │ ├── Examples.sln │ │ ├── README.md │ │ ├── run_count.cmd │ │ └── run_echo.cmd │ ├── hack/ │ │ ├── README.md │ │ ├── count.hh │ │ ├── dump-env.hh │ │ └── greeter.hh │ ├── haskell/ │ │ ├── README.md │ │ ├── count.hs │ │ └── greeter.hs │ ├── html/ │ │ └── count.html │ ├── java/ │ │ ├── Count/ │ │ │ ├── Count.java │ │ │ └── count.sh │ │ ├── Echo/ │ │ │ ├── Echo.java │ │ │ └── echo.sh │ │ └── README.md │ ├── lua/ │ │ ├── README.md │ │ ├── greeter.lua │ │ ├── json.lua │ │ └── json_ws.lua │ ├── nodejs/ │ │ ├── README.md │ │ ├── count.js │ │ └── greeter.js │ ├── perl/ │ │ ├── README.txt │ │ ├── count.pl │ │ ├── dump-env.pl │ │ └── greeter.pl │ ├── php/ │ │ ├── README.txt │ │ ├── count.php │ │ ├── dump-env.php │ │ └── greeter.php │ ├── python/ │ │ ├── README.txt │ │ ├── count.py │ │ ├── dump-env.py │ │ └── greeter.py │ ├── qjs/ │ │ └── request-reply.js │ ├── ruby/ │ │ ├── README.txt │ │ ├── count.rb │ │ ├── dump-env.rb │ │ └── greeter.rb │ ├── rust/ │ │ ├── README.txt │ │ ├── count.rs │ │ ├── dump-env.rs │ │ └── greeter.rs │ ├── swift/ │ │ ├── README.md │ │ ├── count.swift │ │ └── greeter.swift │ ├── windows-jscript/ │ │ ├── README.txt │ │ ├── count.cmd │ │ ├── count.js │ │ ├── dump-env.cmd │ │ ├── dump-env.js │ │ ├── greeter.cmd │ │ └── greeter.js │ └── windows-vbscript/ │ ├── README.txt │ ├── count.cmd │ ├── count.vbs │ ├── dump-env.cmd │ ├── dump-env.vbs │ ├── greeter.cmd │ └── greeter.vbs ├── go.mod ├── go.sum ├── help.go ├── libwebsocketd/ │ ├── config.go │ ├── console.go │ ├── endpoint.go │ ├── endpoint_test.go │ ├── env.go │ ├── handler.go │ ├── handler_test.go │ ├── http.go │ ├── http_test.go │ ├── launcher.go │ ├── license.go │ ├── logscope.go │ ├── process_endpoint.go │ └── websocket_endpoint.go ├── main.go ├── release/ │ ├── .gitignore │ ├── Makefile │ ├── README │ └── websocketd.man └── version.go