Skip to content

Commit

Permalink
qlot update
Browse files Browse the repository at this point in the history
  • Loading branch information
cxxxr committed Oct 20, 2024
1 parent 9866f3d commit c26fa33
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion frontends/server/main.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,12 @@
(jsonrpc:server-listen server
:mode :websocket
:port (websocket-server-runner-port runner)
:host (websocket-server-runner-host runner)))
:host (websocket-server-runner-host runner)
:clack-handler 'clack-handler))

(defun clack-handler (env)
(unless (wsd:websocket-p env)
'(200 () ("ok"))))

;;;
(defclass stdio-server-runner (server-runner)
Expand Down
8 changes: 4 additions & 4 deletions qlfile.lock
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
("quicklisp" .
(:class qlot/source/dist:source-dist
:initargs (:distribution "https://beta.quicklisp.org/dist/quicklisp.txt" :%version :latest)
:version "2023-10-21"))
:version "2024-10-12"))
("micros" .
(:class qlot/source/git:source-git
:initargs (:remote-url "https://github.com/lem-project/micros.git")
:version "git-9fc7f1e5b0dbf1b9218a3f0aca7ed46e90aa86fd"))
:version "git-af94fe5d6688f67a092f604765fb706ebae44e99"))
("lem-mailbox" .
(:class qlot/source/git:source-git
:initargs (:remote-url "https://github.com/lem-project/lem-mailbox.git")
Expand All @@ -29,15 +29,15 @@
("cl-sdl2-ttf" .
(:class qlot/source/git:source-git
:initargs (:remote-url "https://github.com/lem-project/cl-sdl2-ttf.git")
:version "git-e61bb2119003d8ae7792d38aa11f7728d3ee5a00"))
:version "git-f43344efe89cf9ce509e6ce4f7303ebb2ff14434"))
("cl-sdl2-image" .
(:class qlot/source/git:source-git
:initargs (:remote-url "https://github.com/lem-project/cl-sdl2-image.git")
:version "git-8734b0e24de9ca390c9f763d9d7cd501546d17d4"))
("jsonrpc" .
(:class qlot/source/git:source-git
:initargs (:remote-url "https://github.com/cxxxr/jsonrpc.git")
:version "git-a43dd933838bb9596a2bf40e821af0bafd3d5356"))
:version "git-2af1e0fad429ee8c706b86c4a853248cdd1be933"))
("dissect" .
(:class qlot/source/git:source-git
:initargs (:remote-url "https://github.com/Shinmera/dissect.git")
Expand Down

0 comments on commit c26fa33

Please sign in to comment.