├── .github ├── FUNDING.yml └── workflows │ └── d.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── css │ └── style.min.css ├── file_hashes.json ├── fonts │ ├── fontello.woff │ └── raleway-regular.woff ├── images │ └── ddox │ │ ├── alias.png │ │ ├── class.png │ │ ├── enum.png │ │ ├── enummember.png │ │ ├── function.png │ │ ├── inherited.png │ │ ├── interface.png │ │ ├── module.png │ │ ├── package.png │ │ ├── private.png │ │ ├── property.png │ │ ├── protected.png │ │ ├── struct.png │ │ ├── template.png │ │ └── variable.png ├── index.html ├── js │ └── script.min.js ├── prettify │ └── prettify.css ├── scripts │ ├── ddox.js │ └── jquery.js ├── serverino.html ├── serverino │ ├── config.html │ ├── config │ │ ├── Fallthrough.html │ │ ├── ServerinoConfig.ListenerProtocol.html │ │ ├── ServerinoConfig.addListener.html │ │ ├── ServerinoConfig.create.html │ │ ├── ServerinoConfig.disableKeepAlive.html │ │ ├── ServerinoConfig.disableLoggerOverride.html │ │ ├── ServerinoConfig.disableRemoteIp.html │ │ ├── ServerinoConfig.disableServerSignature.html │ │ ├── ServerinoConfig.disableWorkersAutoReload.html │ │ ├── ServerinoConfig.enableKeepAlive.html │ │ ├── ServerinoConfig.enableLoggerOverride.html │ │ ├── ServerinoConfig.enableRemoteIp.html │ │ ├── ServerinoConfig.enableServerSignature.html │ │ ├── ServerinoConfig.enableWorkersAutoReload.html │ │ ├── ServerinoConfig.html │ │ ├── ServerinoConfig.setHttpTimeout.html │ │ ├── ServerinoConfig.setListenerBacklog.html │ │ ├── ServerinoConfig.setLogLevel.html │ │ ├── ServerinoConfig.setMaxDynamicWorkerIdling.html │ │ ├── ServerinoConfig.setMaxRequestSize.html │ │ ├── ServerinoConfig.setMaxRequestTime.html │ │ ├── ServerinoConfig.setMaxWorkerIdling.html │ │ ├── ServerinoConfig.setMaxWorkerLifetime.html │ │ ├── ServerinoConfig.setMaxWorkers.html │ │ ├── ServerinoConfig.setMinWorkers.html │ │ ├── ServerinoConfig.setReturnCode.html │ │ ├── ServerinoConfig.setWorkerGroup.html │ │ ├── ServerinoConfig.setWorkerUser.html │ │ ├── ServerinoConfig.setWorkers.html │ │ ├── endpoint.html │ │ ├── onDaemonStart.html │ │ ├── onDaemonStop.html │ │ ├── onServerInit.html │ │ ├── onWebSocketStart.html │ │ ├── onWebSocketStop.html │ │ ├── onWebSocketUpgrade.html │ │ ├── onWorkerException.html │ │ ├── onWorkerStart.html │ │ ├── onWorkerStop.html │ │ ├── priority.html │ │ └── route.html │ ├── interfaces.html │ └── interfaces │ │ ├── Cookie.SameSite.html │ │ ├── Cookie.domain.html │ │ ├── Cookie.expire.html │ │ ├── Cookie.html │ │ ├── Cookie.httpOnly.html │ │ ├── Cookie.invalidate.html │ │ ├── Cookie.maxAge.html │ │ ├── Cookie.path.html │ │ ├── Cookie.sameSite.html │ │ ├── Cookie.secure.html │ │ ├── Cookie.this.html │ │ ├── HttpVersion.html │ │ ├── OnFileServed.html │ │ ├── Output.addHeader.html │ │ ├── Output.clear.html │ │ ├── Output.clearHeaders.html │ │ ├── Output.html │ │ ├── Output.opAssign.html │ │ ├── Output.opOpAssign.html │ │ ├── Output.serveFile.html │ │ ├── Output.setCookie.html │ │ ├── Output.setMaxRequestTime.html │ │ ├── Output.status.html │ │ ├── Output.write.html │ │ ├── Request.FormData.contentType.html │ │ ├── Request.FormData.data.html │ │ ├── Request.FormData.filename.html │ │ ├── Request.FormData.html │ │ ├── Request.FormData.isFile.html │ │ ├── Request.FormData.name.html │ │ ├── Request.FormData.path.html │ │ ├── Request.Method.html │ │ ├── Request.SafeAccess.data.html │ │ ├── Request.SafeAccess.has.html │ │ ├── Request.SafeAccess.html │ │ ├── Request.SafeAccess.read.html │ │ ├── Request.body.html │ │ ├── Request.cookie.html │ │ ├── Request.dump.html │ │ ├── Request.form.html │ │ ├── Request.get.html │ │ ├── Request.header.html │ │ ├── Request.host.html │ │ ├── Request.html │ │ ├── Request.id.html │ │ ├── Request.method.html │ │ ├── Request.password.html │ │ ├── Request.path.html │ │ ├── Request.post.html │ │ ├── Request.requestLine.html │ │ ├── Request.route.html │ │ ├── Request.toString.html │ │ ├── Request.user.html │ │ ├── Request.worker.html │ │ ├── ServerinoProcess.daemonPID.html │ │ ├── ServerinoProcess.html │ │ ├── ServerinoProcess.isDaemon.html │ │ ├── ServerinoProcess.isDynamicComponent.html │ │ ├── ServerinoProcess.isWebSocket.html │ │ ├── ServerinoProcess.isWorker.html │ │ ├── WebSocket.html │ │ ├── WebSocket.isDirty.html │ │ ├── WebSocket.isSendBufferEmpty.html │ │ ├── WebSocket.kill.html │ │ ├── WebSocket.killReason.html │ │ ├── WebSocket.killRequested.html │ │ ├── WebSocket.onBinaryMessage.html │ │ ├── WebSocket.onCloseMessage.html │ │ ├── WebSocket.onMessage.html │ │ ├── WebSocket.onTextMessage.html │ │ ├── WebSocket.receiveMessage.html │ │ ├── WebSocket.send.html │ │ ├── WebSocket.sendClose.html │ │ ├── WebSocket.sendMessage.html │ │ ├── WebSocket.sendPing.html │ │ ├── WebSocket.socket.html │ │ ├── WebSocket.this.html │ │ ├── WebSocketMessage.as.html │ │ ├── WebSocketMessage.asString.html │ │ ├── WebSocketMessage.html │ │ ├── WebSocketMessage.isValid.html │ │ └── WebSocketMessage.this.html ├── sitemap.xml ├── styles │ └── ddox.css └── symbols.js ├── dub.sdl ├── examples ├── 01_hello_world │ ├── .gitignore │ ├── dub.json │ └── source │ │ └── app.d ├── 02_priority │ ├── .gitignore │ ├── dub.json │ └── source │ │ └── app.d ├── 03_form │ ├── .gitignore │ ├── dub.json │ ├── html │ │ └── form.html │ └── source │ │ └── app.d ├── 04_html_dom │ ├── .gitignore │ ├── dub.json │ ├── html │ │ └── index.html │ └── source │ │ └── app.d ├── 05_websocket_echo │ ├── .gitignore │ ├── dub.json │ ├── source │ │ └── app.d │ └── static │ │ ├── index.html │ │ └── style.css ├── 06_websocket_noise_stream │ ├── .gitignore │ ├── dub.json │ ├── source │ │ ├── app.d │ │ └── opensimplexnoise.d │ └── static │ │ ├── index.html │ │ └── style.css ├── 07_websocket_callback │ ├── .gitignore │ ├── dub.json │ ├── source │ │ └── app.d │ └── static │ │ └── index.html ├── 08_cmdline_args │ ├── .gitignore │ ├── dub.json │ └── source │ │ └── app.d ├── 09_simple_session │ ├── .gitignore │ ├── dub.json │ └── source │ │ ├── app.d │ │ └── simplesession.d ├── 10_diet_ng_templates │ ├── dub.sdl │ ├── source │ │ └── app.d │ └── views │ │ └── index.dt └── 11_elemi_integration │ ├── .gitignore │ ├── dub.json │ └── source │ └── app.d ├── init-exec ├── dub.sdl └── source │ └── app.d ├── serverino.example.service ├── source └── serverino │ ├── common.d │ ├── communicator.d │ ├── config.d │ ├── daemon.d │ ├── databuffer.d │ ├── interfaces.d │ ├── main.d │ ├── package.d │ ├── websocket.d │ └── worker.d └── tests ├── test-01 ├── dub.sdl └── source │ ├── app.d │ └── tagged.d ├── test-02 ├── dub.sdl └── source │ └── app.d └── test-03 ├── dub.sdl └── source └── app.d /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/d.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/.github/workflows/d.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/README.md -------------------------------------------------------------------------------- /docs/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/css/style.min.css -------------------------------------------------------------------------------- /docs/file_hashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/file_hashes.json -------------------------------------------------------------------------------- /docs/fonts/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/fonts/fontello.woff -------------------------------------------------------------------------------- /docs/fonts/raleway-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/fonts/raleway-regular.woff -------------------------------------------------------------------------------- /docs/images/ddox/alias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/images/ddox/alias.png -------------------------------------------------------------------------------- /docs/images/ddox/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/images/ddox/class.png -------------------------------------------------------------------------------- /docs/images/ddox/enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/images/ddox/enum.png -------------------------------------------------------------------------------- /docs/images/ddox/enummember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/images/ddox/enummember.png -------------------------------------------------------------------------------- /docs/images/ddox/function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/images/ddox/function.png -------------------------------------------------------------------------------- /docs/images/ddox/inherited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/images/ddox/inherited.png -------------------------------------------------------------------------------- /docs/images/ddox/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/images/ddox/interface.png -------------------------------------------------------------------------------- /docs/images/ddox/module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/images/ddox/module.png -------------------------------------------------------------------------------- /docs/images/ddox/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/images/ddox/package.png -------------------------------------------------------------------------------- /docs/images/ddox/private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/images/ddox/private.png -------------------------------------------------------------------------------- /docs/images/ddox/property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/images/ddox/property.png -------------------------------------------------------------------------------- /docs/images/ddox/protected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/images/ddox/protected.png -------------------------------------------------------------------------------- /docs/images/ddox/struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/images/ddox/struct.png -------------------------------------------------------------------------------- /docs/images/ddox/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/images/ddox/template.png -------------------------------------------------------------------------------- /docs/images/ddox/variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/images/ddox/variable.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/script.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/js/script.min.js -------------------------------------------------------------------------------- /docs/prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/prettify/prettify.css -------------------------------------------------------------------------------- /docs/scripts/ddox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/scripts/ddox.js -------------------------------------------------------------------------------- /docs/scripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/scripts/jquery.js -------------------------------------------------------------------------------- /docs/serverino.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino.html -------------------------------------------------------------------------------- /docs/serverino/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config.html -------------------------------------------------------------------------------- /docs/serverino/config/Fallthrough.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/Fallthrough.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.ListenerProtocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.ListenerProtocol.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.addListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.addListener.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.create.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.disableKeepAlive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.disableKeepAlive.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.disableLoggerOverride.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.disableLoggerOverride.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.disableRemoteIp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.disableRemoteIp.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.disableServerSignature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.disableServerSignature.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.disableWorkersAutoReload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.disableWorkersAutoReload.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.enableKeepAlive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.enableKeepAlive.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.enableLoggerOverride.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.enableLoggerOverride.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.enableRemoteIp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.enableRemoteIp.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.enableServerSignature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.enableServerSignature.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.enableWorkersAutoReload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.enableWorkersAutoReload.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.setHttpTimeout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.setHttpTimeout.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.setListenerBacklog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.setListenerBacklog.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.setLogLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.setLogLevel.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.setMaxDynamicWorkerIdling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.setMaxDynamicWorkerIdling.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.setMaxRequestSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.setMaxRequestSize.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.setMaxRequestTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.setMaxRequestTime.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.setMaxWorkerIdling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.setMaxWorkerIdling.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.setMaxWorkerLifetime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.setMaxWorkerLifetime.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.setMaxWorkers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.setMaxWorkers.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.setMinWorkers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.setMinWorkers.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.setReturnCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.setReturnCode.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.setWorkerGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.setWorkerGroup.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.setWorkerUser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.setWorkerUser.html -------------------------------------------------------------------------------- /docs/serverino/config/ServerinoConfig.setWorkers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/ServerinoConfig.setWorkers.html -------------------------------------------------------------------------------- /docs/serverino/config/endpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/endpoint.html -------------------------------------------------------------------------------- /docs/serverino/config/onDaemonStart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/onDaemonStart.html -------------------------------------------------------------------------------- /docs/serverino/config/onDaemonStop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/onDaemonStop.html -------------------------------------------------------------------------------- /docs/serverino/config/onServerInit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/onServerInit.html -------------------------------------------------------------------------------- /docs/serverino/config/onWebSocketStart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/onWebSocketStart.html -------------------------------------------------------------------------------- /docs/serverino/config/onWebSocketStop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/onWebSocketStop.html -------------------------------------------------------------------------------- /docs/serverino/config/onWebSocketUpgrade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/onWebSocketUpgrade.html -------------------------------------------------------------------------------- /docs/serverino/config/onWorkerException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/onWorkerException.html -------------------------------------------------------------------------------- /docs/serverino/config/onWorkerStart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/onWorkerStart.html -------------------------------------------------------------------------------- /docs/serverino/config/onWorkerStop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/onWorkerStop.html -------------------------------------------------------------------------------- /docs/serverino/config/priority.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/priority.html -------------------------------------------------------------------------------- /docs/serverino/config/route.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/config/route.html -------------------------------------------------------------------------------- /docs/serverino/interfaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Cookie.SameSite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Cookie.SameSite.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Cookie.domain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Cookie.domain.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Cookie.expire.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Cookie.expire.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Cookie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Cookie.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Cookie.httpOnly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Cookie.httpOnly.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Cookie.invalidate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Cookie.invalidate.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Cookie.maxAge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Cookie.maxAge.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Cookie.path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Cookie.path.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Cookie.sameSite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Cookie.sameSite.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Cookie.secure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Cookie.secure.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Cookie.this.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Cookie.this.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/HttpVersion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/HttpVersion.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/OnFileServed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/OnFileServed.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Output.addHeader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Output.addHeader.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Output.clear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Output.clear.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Output.clearHeaders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Output.clearHeaders.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Output.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Output.opAssign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Output.opAssign.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Output.opOpAssign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Output.opOpAssign.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Output.serveFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Output.serveFile.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Output.setCookie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Output.setCookie.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Output.setMaxRequestTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Output.setMaxRequestTime.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Output.status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Output.status.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Output.write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Output.write.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.FormData.contentType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.FormData.contentType.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.FormData.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.FormData.data.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.FormData.filename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.FormData.filename.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.FormData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.FormData.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.FormData.isFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.FormData.isFile.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.FormData.name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.FormData.name.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.FormData.path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.FormData.path.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.Method.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.SafeAccess.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.SafeAccess.data.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.SafeAccess.has.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.SafeAccess.has.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.SafeAccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.SafeAccess.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.SafeAccess.read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.SafeAccess.read.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.body.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.cookie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.cookie.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.dump.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.dump.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.form.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.get.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.header.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.host.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.host.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.id.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.method.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.password.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.path.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.post.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.requestLine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.requestLine.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.route.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.route.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.toString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.toString.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.user.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/Request.worker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/Request.worker.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/ServerinoProcess.daemonPID.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/ServerinoProcess.daemonPID.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/ServerinoProcess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/ServerinoProcess.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/ServerinoProcess.isDaemon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/ServerinoProcess.isDaemon.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/ServerinoProcess.isDynamicComponent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/ServerinoProcess.isDynamicComponent.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/ServerinoProcess.isWebSocket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/ServerinoProcess.isWebSocket.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/ServerinoProcess.isWorker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/ServerinoProcess.isWorker.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.isDirty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.isDirty.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.isSendBufferEmpty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.isSendBufferEmpty.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.kill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.kill.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.killReason.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.killReason.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.killRequested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.killRequested.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.onBinaryMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.onBinaryMessage.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.onCloseMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.onCloseMessage.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.onMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.onMessage.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.onTextMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.onTextMessage.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.receiveMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.receiveMessage.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.send.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.send.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.sendClose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.sendClose.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.sendMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.sendMessage.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.sendPing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.sendPing.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.socket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.socket.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocket.this.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocket.this.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocketMessage.as.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocketMessage.as.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocketMessage.asString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocketMessage.asString.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocketMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocketMessage.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocketMessage.isValid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocketMessage.isValid.html -------------------------------------------------------------------------------- /docs/serverino/interfaces/WebSocketMessage.this.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/serverino/interfaces/WebSocketMessage.this.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /docs/styles/ddox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/styles/ddox.css -------------------------------------------------------------------------------- /docs/symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/docs/symbols.js -------------------------------------------------------------------------------- /dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/dub.sdl -------------------------------------------------------------------------------- /examples/01_hello_world/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/01_hello_world/.gitignore -------------------------------------------------------------------------------- /examples/01_hello_world/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/01_hello_world/dub.json -------------------------------------------------------------------------------- /examples/01_hello_world/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/01_hello_world/source/app.d -------------------------------------------------------------------------------- /examples/02_priority/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/02_priority/.gitignore -------------------------------------------------------------------------------- /examples/02_priority/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/02_priority/dub.json -------------------------------------------------------------------------------- /examples/02_priority/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/02_priority/source/app.d -------------------------------------------------------------------------------- /examples/03_form/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/03_form/.gitignore -------------------------------------------------------------------------------- /examples/03_form/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/03_form/dub.json -------------------------------------------------------------------------------- /examples/03_form/html/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/03_form/html/form.html -------------------------------------------------------------------------------- /examples/03_form/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/03_form/source/app.d -------------------------------------------------------------------------------- /examples/04_html_dom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/04_html_dom/.gitignore -------------------------------------------------------------------------------- /examples/04_html_dom/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/04_html_dom/dub.json -------------------------------------------------------------------------------- /examples/04_html_dom/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/04_html_dom/html/index.html -------------------------------------------------------------------------------- /examples/04_html_dom/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/04_html_dom/source/app.d -------------------------------------------------------------------------------- /examples/05_websocket_echo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/05_websocket_echo/.gitignore -------------------------------------------------------------------------------- /examples/05_websocket_echo/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/05_websocket_echo/dub.json -------------------------------------------------------------------------------- /examples/05_websocket_echo/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/05_websocket_echo/source/app.d -------------------------------------------------------------------------------- /examples/05_websocket_echo/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/05_websocket_echo/static/index.html -------------------------------------------------------------------------------- /examples/05_websocket_echo/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/05_websocket_echo/static/style.css -------------------------------------------------------------------------------- /examples/06_websocket_noise_stream/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/06_websocket_noise_stream/.gitignore -------------------------------------------------------------------------------- /examples/06_websocket_noise_stream/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/06_websocket_noise_stream/dub.json -------------------------------------------------------------------------------- /examples/06_websocket_noise_stream/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/06_websocket_noise_stream/source/app.d -------------------------------------------------------------------------------- /examples/06_websocket_noise_stream/source/opensimplexnoise.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/06_websocket_noise_stream/source/opensimplexnoise.d -------------------------------------------------------------------------------- /examples/06_websocket_noise_stream/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/06_websocket_noise_stream/static/index.html -------------------------------------------------------------------------------- /examples/06_websocket_noise_stream/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/06_websocket_noise_stream/static/style.css -------------------------------------------------------------------------------- /examples/07_websocket_callback/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/07_websocket_callback/.gitignore -------------------------------------------------------------------------------- /examples/07_websocket_callback/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/07_websocket_callback/dub.json -------------------------------------------------------------------------------- /examples/07_websocket_callback/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/07_websocket_callback/source/app.d -------------------------------------------------------------------------------- /examples/07_websocket_callback/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/07_websocket_callback/static/index.html -------------------------------------------------------------------------------- /examples/08_cmdline_args/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/08_cmdline_args/.gitignore -------------------------------------------------------------------------------- /examples/08_cmdline_args/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/08_cmdline_args/dub.json -------------------------------------------------------------------------------- /examples/08_cmdline_args/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/08_cmdline_args/source/app.d -------------------------------------------------------------------------------- /examples/09_simple_session/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/09_simple_session/.gitignore -------------------------------------------------------------------------------- /examples/09_simple_session/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/09_simple_session/dub.json -------------------------------------------------------------------------------- /examples/09_simple_session/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/09_simple_session/source/app.d -------------------------------------------------------------------------------- /examples/09_simple_session/source/simplesession.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/09_simple_session/source/simplesession.d -------------------------------------------------------------------------------- /examples/10_diet_ng_templates/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/10_diet_ng_templates/dub.sdl -------------------------------------------------------------------------------- /examples/10_diet_ng_templates/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/10_diet_ng_templates/source/app.d -------------------------------------------------------------------------------- /examples/10_diet_ng_templates/views/index.dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/10_diet_ng_templates/views/index.dt -------------------------------------------------------------------------------- /examples/11_elemi_integration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/11_elemi_integration/.gitignore -------------------------------------------------------------------------------- /examples/11_elemi_integration/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/11_elemi_integration/dub.json -------------------------------------------------------------------------------- /examples/11_elemi_integration/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/examples/11_elemi_integration/source/app.d -------------------------------------------------------------------------------- /init-exec/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/init-exec/dub.sdl -------------------------------------------------------------------------------- /init-exec/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/init-exec/source/app.d -------------------------------------------------------------------------------- /serverino.example.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/serverino.example.service -------------------------------------------------------------------------------- /source/serverino/common.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/source/serverino/common.d -------------------------------------------------------------------------------- /source/serverino/communicator.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/source/serverino/communicator.d -------------------------------------------------------------------------------- /source/serverino/config.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/source/serverino/config.d -------------------------------------------------------------------------------- /source/serverino/daemon.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/source/serverino/daemon.d -------------------------------------------------------------------------------- /source/serverino/databuffer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/source/serverino/databuffer.d -------------------------------------------------------------------------------- /source/serverino/interfaces.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/source/serverino/interfaces.d -------------------------------------------------------------------------------- /source/serverino/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/source/serverino/main.d -------------------------------------------------------------------------------- /source/serverino/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/source/serverino/package.d -------------------------------------------------------------------------------- /source/serverino/websocket.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/source/serverino/websocket.d -------------------------------------------------------------------------------- /source/serverino/worker.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/source/serverino/worker.d -------------------------------------------------------------------------------- /tests/test-01/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/tests/test-01/dub.sdl -------------------------------------------------------------------------------- /tests/test-01/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/tests/test-01/source/app.d -------------------------------------------------------------------------------- /tests/test-01/source/tagged.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/tests/test-01/source/tagged.d -------------------------------------------------------------------------------- /tests/test-02/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/tests/test-02/dub.sdl -------------------------------------------------------------------------------- /tests/test-02/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/tests/test-02/source/app.d -------------------------------------------------------------------------------- /tests/test-03/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/tests/test-03/dub.sdl -------------------------------------------------------------------------------- /tests/test-03/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trikko/serverino/HEAD/tests/test-03/source/app.d --------------------------------------------------------------------------------