Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libwebsockets
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Fork
libwebsockets
Commits
73557509
Commit
73557509
authored
8 years ago
by
Andy Green
Browse files
Options
Downloads
Patches
Plain Diff
v2.1.0
Bump soname to 9
parent
443b31d0
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+2
-2
2 additions, 2 deletions
CMakeLists.txt
changelog
+33
-25
33 additions, 25 deletions
changelog
libwebsockets.spec
+4
-1
4 additions, 1 deletion
libwebsockets.spec
with
39 additions
and
28 deletions
CMakeLists.txt
+
2
−
2
View file @
73557509
...
@@ -9,12 +9,12 @@ project(libwebsockets C)
...
@@ -9,12 +9,12 @@ project(libwebsockets C)
set
(
PACKAGE
"libwebsockets"
)
set
(
PACKAGE
"libwebsockets"
)
set
(
CPACK_PACKAGE_NAME
"
${
PACKAGE
}
"
)
set
(
CPACK_PACKAGE_NAME
"
${
PACKAGE
}
"
)
set
(
CPACK_PACKAGE_VERSION_MAJOR
"2"
)
set
(
CPACK_PACKAGE_VERSION_MAJOR
"2"
)
set
(
CPACK_PACKAGE_VERSION_MINOR
"
0
"
)
set
(
CPACK_PACKAGE_VERSION_MINOR
"
1
"
)
set
(
CPACK_PACKAGE_VERSION_PATCH
"0"
)
set
(
CPACK_PACKAGE_VERSION_PATCH
"0"
)
set
(
CPACK_PACKAGE_VERSION
"
${
CPACK_PACKAGE_VERSION_MAJOR
}
.
${
CPACK_PACKAGE_VERSION_MINOR
}
.
${
CPACK_PACKAGE_VERSION_PATCH
}
"
)
set
(
CPACK_PACKAGE_VERSION
"
${
CPACK_PACKAGE_VERSION_MAJOR
}
.
${
CPACK_PACKAGE_VERSION_MINOR
}
.
${
CPACK_PACKAGE_VERSION_PATCH
}
"
)
set
(
CPACK_PACKAGE_VENDOR
"andy@warmcat.com"
)
set
(
CPACK_PACKAGE_VENDOR
"andy@warmcat.com"
)
set
(
CPACK_PACKAGE_DESCRIPTION_SUMMARY
"
${
PACKAGE
}
${
PACKAGE_VERSION
}
"
)
set
(
CPACK_PACKAGE_DESCRIPTION_SUMMARY
"
${
PACKAGE
}
${
PACKAGE_VERSION
}
"
)
set
(
SOVERSION
"
8
"
)
set
(
SOVERSION
"
9
"
)
set
(
CPACK_SOURCE_GENERATOR
"TGZ"
)
set
(
CPACK_SOURCE_GENERATOR
"TGZ"
)
set
(
CPACK_SOURCE_PACKAGE_FILE_NAME
"
${
CPACK_PACKAGE_NAME
}
-
${
CPACK_PACKAGE_VERSION
}
"
)
set
(
CPACK_SOURCE_PACKAGE_FILE_NAME
"
${
CPACK_PACKAGE_NAME
}
-
${
CPACK_PACKAGE_VERSION
}
"
)
set
(
VERSION
"
${
CPACK_PACKAGE_VERSION
}
"
)
set
(
VERSION
"
${
CPACK_PACKAGE_VERSION
}
"
)
...
...
This diff is collapsed.
Click to expand it.
changelog
+
33
−
25
View file @
73557509
Changelog
Changelog
---------
---------
Fixes
v2.1.0
-----
======
Major new features
- Support POST arguments, including multipart and file attachment
- Move most of lwsws into lws, make the stub CC0
- Add loopback test plugin to confirm client ws / http coexistence
- Integrate lwsws testing on Appveyor (ie, windows)
1) OpenSSL version tests not needed on LibreSSL and BoringSSL
- Introduce helpers for sql, urlencode and urldecode sanitation
2) Fix IPV6 build breakage
- Introduce LWS_CALLBACK_HTTP_BIND_PROTOCOL / DROP_PROTOCOL that
are compatible with http:/1.1 pipelining and different plugins
owning different parts of the URL space
3) Some fixes for WinCE build
- lwsgs - Generic Sessions plugin supports serverside sessions,
cookies, hashed logins, forgot password etc
4)
Add
itional canned mimetypes for mounts, the full list i
s
-
Add
ed APIs for sending email to SMTP server
s
.ico image/x-icon
- Messageboard example plugin for lwsgs
.gif image/gif
.js text/javascript
.png image/png
.jpg image/jpeg
.gz application/gzip
.JPG image/jpeg
.html text/html
.css text/css
.txt text/plain
.ttf application/x-font-ttf
.woff application/font-woff
.xml application/xml
5) Allow per-vhost setting of which protocol should get used
- Automatic PING sending at fixed intervals and close if no response
when the protocol: header is not sent by the client
- Change default header limit in ah to 4096 (from 1024)
- Add SNI matching for wildcards if no specific wildcard vhost name match
- Convert docs to Doxygen
- ESP8266 support ^^
Fixes
-----
New APIs
See git log v2.0.0..
--------
1) lws_init_vhost_client_ssl() lets you also enable client SSL context on a
vhost.
v2.0.0
v2.0.0
...
...
This diff is collapsed.
Click to expand it.
libwebsockets.spec
+
4
−
1
View file @
73557509
Name: libwebsockets
Name: libwebsockets
Version: 2.
0
.0
Version: 2.
1
.0
Release: 1%{?dist}
Release: 1%{?dist}
Summary: Websocket Server and Client Library
Summary: Websocket Server and Client Library
...
@@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT
...
@@ -70,6 +70,9 @@ rm -rf $RPM_BUILD_ROOT
/%{_libdir}/pkgconfig/libwebsockets.pc
/%{_libdir}/pkgconfig/libwebsockets.pc
%changelog
%changelog
* Thu Oct 06 2016 Andy Green <andy@warmcat.com> 2.1.0-1
- MAJOR SONAMEBUMP APICHANGES Upstream 2.1.0 release
* Thu May 05 2016 Andy Green <andy@warmcat.com> 2.0.0-1
* Thu May 05 2016 Andy Green <andy@warmcat.com> 2.0.0-1
- MAJOR SONAMEBUMP APICHANGES Upstream 2.0.0 release
- MAJOR SONAMEBUMP APICHANGES Upstream 2.0.0 release
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment