diff options
Diffstat (limited to 'web/socket/server.scm')
-rw-r--r-- | web/socket/server.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/web/socket/server.scm b/web/socket/server.scm index b8c34dc..85395a3 100644 --- a/web/socket/server.scm +++ b/web/socket/server.scm @@ -1,3 +1,28 @@ +;;; guile-websocket --- WebSocket client/server +;;; Copyright © 2015 David Thompson <davet@gnu.org> +;;; +;;; This file is part of guile-websocket. +;;; +;;; Guile-websocket is free software; you can redistribute it and/or modify +;;; it under the terms of the GNU Lesser General Public License as +;;; published by the Free Software Foundation; either version 3 of the +;;; License, or (at your option) any later version. +;;; +;;; Guile-websocket is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;;; General Public License for more details. +;;; +;;; You should have received a copy of the GNU Lesser General Public +;;; License along with guile-websocket. If not, see +;;; <http://www.gnu.org/licenses/>. + +;;; Commentary: +;; +;; WebSocket server. +;; +;;; Code: + (define-module (web socket server) #:use-module (ice-9 match) #:use-module (rnrs bytevectors) |