diff options
author | David Thompson <davet@gnu.org> | 2015-11-08 14:06:11 -0500 |
---|---|---|
committer | David Thompson <davet@gnu.org> | 2015-11-08 14:06:11 -0500 |
commit | ff2e65bf261fa788087142860f322c5bb317b32e (patch) | |
tree | bd39752c7498442f79bbc95cd553cca904f3b822 /web | |
parent | 2f2926110cf2f02df4c60f2231bfc9d5b21d8d5c (diff) |
Add LGPL license information.
Diffstat (limited to 'web')
-rw-r--r-- | web/socket/frame.scm | 25 | ||||
-rw-r--r-- | web/socket/server.scm | 25 |
2 files changed, 50 insertions, 0 deletions
diff --git a/web/socket/frame.scm b/web/socket/frame.scm index 7186c00..3bd56f7 100644 --- a/web/socket/frame.scm +++ b/web/socket/frame.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 frame abstraction. +;; +;;; Code: + (define-module (web socket frame) #:use-module (rnrs bytevectors) #:use-module (rnrs io ports) 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) |