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
a085a0ab
Commit
a085a0ab
authored
8 years ago
by
Andy Green
Browse files
Options
Downloads
Patches
Plain Diff
v1.7.9
SONAME to 7.1 because of lws_snprintf()
parent
151aa809
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
changelog
+18
-0
18 additions, 0 deletions
changelog
libwebsockets-api-doc.html
+24
-0
24 additions, 0 deletions
libwebsockets-api-doc.html
libwebsockets.spec
+5
-2
5 additions, 2 deletions
libwebsockets.spec
with
49 additions
and
4 deletions
CMakeLists.txt
+
2
−
2
View file @
a085a0ab
...
@@ -10,11 +10,11 @@ set(PACKAGE "libwebsockets")
...
@@ -10,11 +10,11 @@ set(PACKAGE "libwebsockets")
set
(
CPACK_PACKAGE_NAME
"
${
PACKAGE
}
"
)
set
(
CPACK_PACKAGE_NAME
"
${
PACKAGE
}
"
)
set
(
CPACK_PACKAGE_VERSION_MAJOR
"1"
)
set
(
CPACK_PACKAGE_VERSION_MAJOR
"1"
)
set
(
CPACK_PACKAGE_VERSION_MINOR
"7"
)
set
(
CPACK_PACKAGE_VERSION_MINOR
"7"
)
set
(
CPACK_PACKAGE_VERSION_PATCH
"
8
"
)
set
(
CPACK_PACKAGE_VERSION_PATCH
"
9
"
)
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
"7"
)
set
(
SOVERSION
"7
.1
"
)
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
+
18
−
0
View file @
a085a0ab
Changelog
Changelog
---------
---------
v1.7.9
======
NB: lws_snprintf() added, but only used in library and test apps
SONAME bump to 7.1
Fixes:
1) Fix leak caused by undestroyed pthread mutex
2) Add CLIENT_CONNECTION_ERROR callbacks for more failure paths
3) Fix for client close to callback on one error path
4) lws_snprintf() needed in a couple of test apps (1.7.x lib doesn't use it
for aggregated buffer truncation)
v1.7.8
v1.7.8
======
======
...
...
This diff is collapsed.
Click to expand it.
libwebsockets-api-doc.html
+
24
−
0
View file @
a085a0ab
...
@@ -1674,3 +1674,27 @@ Otherwise a default timeout is used.
...
@@ -1674,3 +1674,27 @@ Otherwise a default timeout is used.
<dd>
Length of data in
<tt><b>
buf
</b></tt>
to send
<dd>
Length of data in
<tt><b>
buf
</b></tt>
to send
</dl>
</dl>
<hr>
<hr>
<h2>
lws_snprintf -
</h2>
<i>
LWS_EXTERN int
</i>
<b>
lws_snprintf
</b>
(
<i>
char *
</i>
<b>
str
</b>
,
<i>
size_t
</i>
<b>
size
</b>
,
<i>
const char *
</i>
<b>
format
</b>
,
<i></i>
<b>
...
</b>
)
<h3>
Arguments
</h3>
<dl>
<dt><b>
...
</b>
<dd>
variable arguments
</dl>
<h3>
Description
</h3>
<blockquote>
<p>
\param str: destination buffer
\param size: bytes left in destination buffer
\param format: format string
\param ...: args for format
<p>
This lets you correctly truncate buffers by concatenating lengths, if you
reach the limit the reported length doesn't exceed the limit.
</blockquote>
<hr>
This diff is collapsed.
Click to expand it.
libwebsockets.spec
+
5
−
2
View file @
a085a0ab
Name: libwebsockets
Name: libwebsockets
Version: 1.7.
8
Version: 1.7.
9
Release: 1%{?dist}
Release: 1%{?dist}
Summary: Websocket Server and Client Library
Summary: Websocket Server and Client Library
...
@@ -55,7 +55,7 @@ rm -rf $RPM_BUILD_ROOT
...
@@ -55,7 +55,7 @@ rm -rf $RPM_BUILD_ROOT
/usr/bin/libwebsockets-test-echo
/usr/bin/libwebsockets-test-echo
/usr/bin/libwebsockets-test-fraggle
/usr/bin/libwebsockets-test-fraggle
/usr/bin/libwebsockets-test-fuzxy
/usr/bin/libwebsockets-test-fuzxy
/%{_libdir}/libwebsockets.so.7
/%{_libdir}/libwebsockets.so.7
.1
/%{_libdir}/libwebsockets.so
/%{_libdir}/libwebsockets.so
/%{_libdir}/cmake/libwebsockets/LibwebsocketsConfig.cmake
/%{_libdir}/cmake/libwebsockets/LibwebsocketsConfig.cmake
/%{_libdir}/cmake/libwebsockets/LibwebsocketsConfigVersion.cmake
/%{_libdir}/cmake/libwebsockets/LibwebsocketsConfigVersion.cmake
...
@@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT
...
@@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT
%changelog
%changelog
* Thu Sep 15 2016 Andy Green <andy@warmcat.com> 1.7.9-1
- MINOR fixes Upstream 1.7.9 release (see changelog)
* Thu May 12 2016 Andy Green <andy@warmcat.com> 1.7.8-1
* Thu May 12 2016 Andy Green <andy@warmcat.com> 1.7.8-1
- MINOR fixes Upstream 1.7.8 release (see changelog)
- MINOR fixes Upstream 1.7.8 release (see changelog)
...
...
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