From 60a801239608e439a43a607a840e19d5b7df48e6 Mon Sep 17 00:00:00 2001 From: Brad Nelson Date: Sat, 12 Jun 2021 17:38:00 -0700 Subject: [PATCH] Add missing file. --- ueforth/site/posix_common.html | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 ueforth/site/posix_common.html diff --git a/ueforth/site/posix_common.html b/ueforth/site/posix_common.html new file mode 100644 index 0000000..eeb29f6 --- /dev/null +++ b/ueforth/site/posix_common.html @@ -0,0 +1,22 @@ +
Web Interface
+These words are inside the web-interface vocabulary. +
+server ( port -- ) Start web UI on port (used to implement webui).
+
+ +
HTTP Daemon
+These words are inside the httpde vocabulary. +
+server ( port -- ) Start an httpd on port.
+handleClient ( -- ) Get next request.
+path ( -- a n ) Request path, e.g. /foo
+method ( -- a n ) Request method, e.g. GET
+header ( a n -- a n ) Contents of header (or empty string).
+body ( -- a n ) Rquest body.
+
+ +
Telnet Daemon
+These words are inside the web-interface vocabulary. +
+server ( port -- ) Start telnet daemon on port.
+