mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00
license: fix up last mentions of lgpl outside of the source file license grant part
This commit is contained in:
parent
b4449e9f12
commit
277d0e5e4c
9 changed files with 14 additions and 14 deletions
|
@ -47,11 +47,10 @@ the following functions:
|
|||
|
||||
## License
|
||||
|
||||
lws-ssh-base is Free Software, available under libwebsocket's LGPLv2 +
|
||||
static linking exception license.
|
||||
lws-ssh-base is Free Software, available under libwebsockets' MIT license.
|
||||
|
||||
The crypto parts are available elsewhere under a BSD license. But for
|
||||
simplicity the whole plugin is under LGPLv2.
|
||||
simplicity the whole plugin is under MIT.
|
||||
|
||||
## Generating your own keys
|
||||
|
||||
|
|
|
@ -64,9 +64,10 @@ different than that of previous versions.
|
|||

|
||||
|
||||
If there is something you need in a later lws version that is not backported,
|
||||
you need to either backport it yourself (remember that lws is LGPL and you must
|
||||
provide your changes when you distribute the binary) or use a later lws version.
|
||||
Using a more recent version of lws is almost always the correct way.
|
||||
you need to either backport it yourself or use a later lws version.
|
||||
Using a more recent version of lws (and contributing fixes and changes so you
|
||||
yourself can get them easily as well as contributing for others) is almost
|
||||
always the correct way.
|
||||
|
||||
## Stable point releases
|
||||
|
||||
|
|
|
@ -302,7 +302,7 @@ By default it runs in server mode
|
|||
```
|
||||
$ libwebsockets-test-fraggle
|
||||
libwebsockets test fraggle
|
||||
(C) Copyright 2010-2011 Andy Green <andy@warmcat.com> licensed under LGPL2.1
|
||||
(C) Copyright 2010-2011 Andy Green <andy@warmcat.com> licensed under MIT
|
||||
Compiled with SSL support, not using it
|
||||
Listening on port 7681
|
||||
server sees client connect
|
||||
|
@ -318,7 +318,7 @@ give the `-c` switch and the server address at least:
|
|||
```
|
||||
$ libwebsockets-test-fraggle -c localhost
|
||||
libwebsockets test fraggle
|
||||
(C) Copyright 2010-2011 Andy Green <andy@warmcat.com> licensed under LGPL2.1
|
||||
(C) Copyright 2010-2011 Andy Green <andy@warmcat.com> licensed under MIT
|
||||
Client mode
|
||||
Connecting to localhost:7681
|
||||
denied deflate-stream extension
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* he replied it is Public Domain. Use the URL above to get the original
|
||||
* Public Domain version if you want it.
|
||||
*
|
||||
* This version is LGPL2.1+SLE like the rest of libwebsockets and is
|
||||
* This version is MIT like the rest of libwebsockets and is
|
||||
* Copyright (c)2006 - 2013 Andy Green <andy@warmcat.com>
|
||||
*
|
||||
*
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
* Copyright (C)2011-2014 Andy Green <andy@warmcat.com>
|
||||
*
|
||||
* Licensed under LGPL2
|
||||
* Licensed under MIT
|
||||
*
|
||||
* Usage: gcc minihuf.c -o minihuf && ./minihuf > huftable.h
|
||||
*
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
* Copyright (C)2011-2014 Andy Green <andy@warmcat.com>
|
||||
*
|
||||
* Licensed under LGPL2
|
||||
* Licensed under MIT
|
||||
*
|
||||
* Usage: gcc minilex.c -o minilex && ./minilex > lextable.h
|
||||
*
|
||||
|
|
|
@ -4,7 +4,7 @@ Release: 1%{?dist}
|
|||
Summary: Websocket Server and Client Library
|
||||
|
||||
Group: System Environment/Libraries
|
||||
License: LGPLv2 with exceptions
|
||||
License: MIT
|
||||
URL: https://libwebsockets.org
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
||||
|
|
|
@ -589,7 +589,7 @@ int main(int argc, char **argv)
|
|||
|
||||
memset(&info, 0, sizeof info);
|
||||
|
||||
lwsl_notice("libwebsockets test client - license LGPL2.1+SLE\n");
|
||||
lwsl_notice("libwebsockets test client - license MIT\n");
|
||||
lwsl_notice("(C) Copyright 2010-2018 Andy Green <andy@warmcat.com>\n");
|
||||
|
||||
if (argc < 2)
|
||||
|
|
|
@ -475,7 +475,7 @@ int main(int argc, char **argv)
|
|||
/* tell the library what debug level to emit and to send it to stderr */
|
||||
lws_set_log_level(debug_level, NULL);
|
||||
|
||||
lwsl_notice("libwebsockets test server - license LGPL2.1+SLE\n");
|
||||
lwsl_notice("libwebsockets test server - license MIT\n");
|
||||
lwsl_notice("(C) Copyright 2010-2018 Andy Green <andy@warmcat.com>\n");
|
||||
|
||||
printf("Using resource path \"%s\"\n", resource_path);
|
||||
|
|
Loading…
Add table
Reference in a new issue