Skip to content
GitLab
Explore
Sign in
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
e6bd6296
Commit
e6bd6296
authored
8 years ago
by
Andy Green
Browse files
Options
Downloads
Patches
Plain Diff
v2.3.0
parent
4a9c23e9
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+2
-2
2 additions, 2 deletions
CMakeLists.txt
README.md
+2
-3
2 additions, 3 deletions
README.md
changelog
+37
-0
37 additions, 0 deletions
changelog
libwebsockets.spec
+5
-2
5 additions, 2 deletions
libwebsockets.spec
with
46 additions
and
7 deletions
CMakeLists.txt
+
2
−
2
View file @
e6bd6296
...
...
@@ -9,12 +9,12 @@ project(libwebsockets C)
set
(
PACKAGE
"libwebsockets"
)
set
(
CPACK_PACKAGE_NAME
"
${
PACKAGE
}
"
)
set
(
CPACK_PACKAGE_VERSION_MAJOR
"2"
)
set
(
CPACK_PACKAGE_VERSION_MINOR
"
2
"
)
set
(
CPACK_PACKAGE_VERSION_MINOR
"
3
"
)
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_VENDOR
"andy@warmcat.com"
)
set
(
CPACK_PACKAGE_DESCRIPTION_SUMMARY
"
${
PACKAGE
}
${
PACKAGE_VERSION
}
"
)
set
(
SOVERSION
"1
0
"
)
set
(
SOVERSION
"1
1
"
)
if
(
NOT CPACK_GENERATOR
)
if
(
UNIX
)
set
(
CPACK_GENERATOR
"TGZ"
)
...
...
This diff is collapsed.
Click to expand it.
README.md
+
2
−
3
View file @
e6bd6296
...
...
@@ -8,14 +8,13 @@ libwebsockets
News
----
v2.3 is out... see the changelog https://github.com/warmcat/libwebsockets/blob/v2.3-stable/changelog
ESP32 is now supported in lws! Download the
-
factory https://github.com/warmcat/lws-esp32-factory and
-
test server app https://github.com/warmcat/lws-esp32-test-server-demos
v2.2 is out... see the changelog https://github.com/warmcat/libwebsockets/blob/v2.2-stable/changelog
This is the libwebsockets C library for lightweight websocket clients and
servers. For support, visit
...
...
This diff is collapsed.
Click to expand it.
changelog
+
37
−
0
View file @
e6bd6296
Changelog
---------
v2.3.0
======
- ESP32 OpenSSL support for client and server
- ESP32 4 x WLAN credential slots may be configured
- Libevent event loop support
- SOCKS5 proxy support
- lws_meta protocol for websocket connection multiplexing
- lws_vhost_destroy() added... allows dynamic removal of listening
vhosts. Vhosts with shared listen sockets adopt the listen socket
automatically if the owner is destroyed.
- IPv6 on Windows
- Improved CGI handling suitable for general CGI scripting, eg, PHP
- Convert even the "old style" test servers to use statically included
plugin sources
- LWS_WITH_STATS cmake option dumps resource usage and timing information
every few seconds to debug log, including latency information about
delay from asking for writeable callback to getting it
- Large (> 2GB) files may be served
- LWS_WITH_HTTP_PROXY Cmake option adds proxying mounts
- Workaround for libev build by disabling -Werror on the test app
- HTTP2 support disabled since no way to serve websockets on it
v2.2.0
======
...
...
This diff is collapsed.
Click to expand it.
libwebsockets.spec
+
5
−
2
View file @
e6bd6296
Name: libwebsockets
Version: 2.
2
.0
Version: 2.
3
.0
Release: 1%{?dist}
Summary: Websocket Server and Client Library
...
...
@@ -55,7 +55,7 @@ rm -rf $RPM_BUILD_ROOT
/usr/bin/libwebsockets-test-echo
/usr/bin/libwebsockets-test-fraggle
/usr/bin/libwebsockets-test-fuzxy
/%{_libdir}/libwebsockets.so.1
0
/%{_libdir}/libwebsockets.so.1
1
/%{_libdir}/libwebsockets.so
/%{_libdir}/cmake/libwebsockets/LibwebsocketsConfig.cmake
/%{_libdir}/cmake/libwebsockets/LibwebsocketsConfigVersion.cmake
...
...
@@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT
/%{_libdir}/pkgconfig/libwebsockets.pc
%changelog
* Fri Jul 28 2017 Andy Green <andy@warmcat.com> 2.3.0-1
- MAJOR SONAMEBUMP APICHANGES Upstream 2.3.0 release
* Mon Mar 06 2017 Andy Green <andy@warmcat.com> 2.2.0-1
- MAJOR SONAMEBUMP APICHANGES Upstream 2.2.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