From ff2e65bf261fa788087142860f322c5bb317b32e Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sun, 8 Nov 2015 14:06:11 -0500 Subject: Add LGPL license information. --- web/socket/frame.scm | 25 +++++++++++++++++++++++++ web/socket/server.scm | 25 +++++++++++++++++++++++++ 2 files changed, 50 insertions(+) (limited to 'web') 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 +;;; +;;; 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 +;;; . + +;;; 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 +;;; +;;; 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 +;;; . + +;;; Commentary: +;; +;; WebSocket server. +;; +;;; Code: + (define-module (web socket server) #:use-module (ice-9 match) #:use-module (rnrs bytevectors) -- cgit v1.2.3