mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 02:30:42 -08:00
ability to switch static routes at run-time
This commit is contained in:
parent
144a4e2133
commit
eb63715883
9 changed files with 244 additions and 237 deletions
|
|
@ -34,11 +34,13 @@ script."
|
|||
|
||||
"CLOG system startup and shutdown"
|
||||
|
||||
(*verbose-output* variable)
|
||||
(*browser-gc-on-ping* variable)
|
||||
(*break-on-error* variable)
|
||||
(*verbose-output* variable)
|
||||
(*browser-gc-on-ping* variable)
|
||||
(*break-on-error* variable)
|
||||
(*disable-clog-debugging* variable)
|
||||
(*reconnect-delay* variable)
|
||||
(*reconnect-delay* variable)
|
||||
(*static-root* variable)
|
||||
(*clog-port* variable)
|
||||
|
||||
(initialize function)
|
||||
(random-port function)
|
||||
|
|
@ -89,6 +91,8 @@ script."
|
|||
(defvar *break-on-error* t "Allow invoking debugger (default t)")
|
||||
(defvar *disable-clog-debugging* nil "When true turns off debug hooks (default nil)")
|
||||
(defvar *reconnect-delay* 7 "Time to delay in seconds for possible reconnect (default 7)")
|
||||
(defparameter *static-root* nil "Contains the static-root setting after initialization.")
|
||||
(defparameter *clog-port* 8080 "Port this instance of clog was started on")
|
||||
|
||||
(defvar *on-connect-handler* nil "New connection event handler.")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue