=
div>
Build with vcxproj and tested on Windows VS16=
.
All looks fine :
[websocket:info] [pid 24=
28:tid 2268] [client ::1:50195] established new WebSocket connectionv>
Only a few warninf:
>
mod_websocket.c(1186,57): warning C4244: =
'function': conversion from 'apr_int64_t' to 'apr_size_t', possible loss of =
data
mod_websocket.c(1253,37): warning C4244: 'f=
unction': conversion from 'apr_int64_t' to 'size_t', possible loss of data=
i>
mod_websocket.c(1282,45): warning C4244: '+=3d': =
conversion from 'apr_int64_t' to 'apr_size_t', possible loss of datav>
mod_websocket\mod_websocket.c(1283,46): warning C4244: =
'+=3d': conversion from 'apr_int64_t' to 'apr_size_t', possible loss of data=
Is it ok that I make available at <=
a target=3d"_blank" href=3d"https://www.apachelounge.com/download/" style=3d=
"font-size: 12pt;">https://www.apachelounge.com/download/ ?
iv>
Steffen
On Thu=
rsday 16/07/2020 at 04:12, Jacob Champion wrote:
I'm happ=
y to announce version 0.1.2 of mod_websocket:
 =
; websocket/releases/tag/0.1.2">https://github.com/jchampio/apache-websocket/r=
eleases/tag/0.1.2
mod_websocket is an Apache 2.x module that allo=
ws developers to write C-
and C++-based WebSocket services. The intent is=
for mod_websocket plugin
writers to develop their services independently=
of the Apache server API.
This is a "dust off the build" release -- =
the user-facing changes have
been in master for four years, but never off=
icially released. One major
bug has been fixed, a few minor cleanups have=
been made, and a new build
system for *nix platforms was contributed to =
the project. I am also
dropping testing coverage for the obsolete 2.2 ser=
ver line, though I
won't intentionally break 2.2 features until a future =
0.2 release.
=3d Major New Features/Fixes =3d
- Extremely frag=
mented messages no longer cause poor performance and
=
possible DoS conditions. Thanks to Paul Spangler for his fix
 =
; suggestion!
- The CMake build system now supports *nix platform=
s as well as Windows.
Thanks to -at-toniotelli for the =
contribution!
- The 'MaxMessageSize' directive has been renamed to
&nb=
sp; 'WebSocketMaxMessageSize'; its previous spelling is deprec=
ated and
will be removed in the future.
A ful=
l changelist can be seen at the release description on GitHub.
=3d Ma=
jor Known Issues =3d
This is a pre-release, zero-dot module. There ar=
e known issues that may
preclude its use in production systems. Please un=
derstand them and take
steps to avoid them if you decide to deploy mod_we=
bsocket.
- Apache worker threads are completely monopolized by WebSoc=
ket
connections. This makes it possible for a large =
number of connections
to DoS the server.
A mo=
re complete (but not necessarily exhaustive) list is available at
the rep=
o page on GitHub:
ank" href=3d"https://github.com/jchampio/apache-websocket/issues">https://gi=
thub.com/jchampio/apache-websocket/issues
=3d What's Next =3d
=
There's a lot of stuff to do. During my absence from the project,
Web=
Socket has received a transport based on HTTP/2, several optional
WebSock=
et features have seen more mainstream use, and Python 2 was
EoL'd. And th=
e existing issues list didn't become any shorter,
unfortunately.
Q=
uestions? Comments? Let me know. Thanks for your interest!
--Jacob Ch=
ampion
--------------------------------------------------------------=
-------
To unsubscribe, e-mail: users-unsubscribe-at-httpd.apache.org
For=
additional commands, e-mail: users-help-at-httpd.apache.org
e>
------=_SW_10102_1595859568_mpa=--
--===============0269268660==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
Hangout mailing list
Hangout-at-nylxs.com
http://lists.mrbrklyn.com/mailman/listinfo/hangout
--===============0269268660==--
--===============0269268660==
Content-Type: multipart/alternative; boundary="----=_SW_10102_1595859568_mpa="
------=_SW_10102_1595859568_mpa=
Content-Type: text/plain; charset=us-ascii; format=flowed
Below I running with Windows 32 and using the example
mod_websocket_echo.so.
But with Windows 64 it is not running:
AH00526: Syntax error on line 122 of C:/Apache24/conf/httpd.conf:
Could not find initialization function "_echo_init-at-0" for
WebSocketHandler modules/mod_websocket_echo.so
When I change _echo_init-at-0 it is running.
So with:
Win32 : find initialization function "_echo_init-at-0"
Win64 : find initialization function "echo_init"
conf:
LoadModule websocket_module modules/mod_websocket.so
SetHandler websocket-handler
WebSocketHandler modules/mod_websocket_echo.so _echo_init-at-0
Running the latest 2.4.44-dev
On Monday 27/07/2020 at 14:10, Steffen Land wrote:
>
>
>
>
> Build with vcxproj and tested on Windows VS16.
>
> All looks fine : [websocket:info] [pid 2428:tid 2268] [client
> ::1:50195] established new WebSocket connection
> Only a few warninf:
>
>
> mod_websocket.c(1186,57): warning C4244: 'function': conversion from
> 'apr_int64_t' to 'apr_size_t', possible loss of data
> mod_websocket.c(1253,37): warning C4244: 'function': conversion from
> 'apr_int64_t' to 'size_t', possible loss of data
> mod_websocket.c(1282,45): warning C4244: '+=': conversion from
> 'apr_int64_t' to 'apr_size_t', possible loss of data
> mod_websocket\mod_websocket.c(1283,46): warning C4244: '+=':
> conversion from 'apr_int64_t' to 'apr_size_t', possible loss of data
>
> Is it ok that I make available at
> https://www.apachelounge.com/download/ ?
>
> Steffen
>
>
> On Thursday 16/07/2020 at 04:12, Jacob Champion wrote:
>> I'm happy to announce version 0.1.2 of mod_websocket:
>>
>> https://github.com/jchampio/apache-websocket/releases/tag/0.1.2
>>
>> mod_websocket is an Apache 2.x module that allows developers to write
>> C-
>> and C++-based WebSocket services. The intent is for mod_websocket
>> plugin
>> writers to develop their services independently of the Apache server
>> API.
>>
>> This is a "dust off the build" release -- the user-facing changes have
>> been in master for four years, but never officially released. One
>> major
>> bug has been fixed, a few minor cleanups have been made, and a new
>> build
>> system for *nix platforms was contributed to the project. I am also
>> dropping testing coverage for the obsolete 2.2 server line, though I
>> won't intentionally break 2.2 features until a future 0.2 release.
>>
>> = Major New Features/Fixes =
>>
>> - Extremely fragmented messages no longer cause poor performance and
>> possible DoS conditions. Thanks to Paul Spangler for his fix
>> suggestion!
>> - The CMake build system now supports *nix platforms as well as
>> Windows.
>> Thanks to -at-toniotelli for the contribution!
>> - The 'MaxMessageSize' directive has been renamed to
>> 'WebSocketMaxMessageSize'; its previous spelling is deprecated
>> and
>> will be removed in the future.
>>
>> A full changelist can be seen at the release description on GitHub.
>>
>> = Major Known Issues =
>>
>> This is a pre-release, zero-dot module. There are known issues that
>> may
>> preclude its use in production systems. Please understand them and
>> take
>> steps to avoid them if you decide to deploy mod_websocket.
>>
>> - Apache worker threads are completely monopolized by WebSocket
>> connections. This makes it possible for a large number of
>> connections
>> to DoS the server.
>>
>> A more complete (but not necessarily exhaustive) list is available at
>> the repo page on GitHub:
>>
>> https://github.com/jchampio/apache-websocket/issues
>>
>> = What's Next =
>>
>> There's a lot of stuff to do. During my absence from the project,
>> WebSocket has received a transport based on HTTP/2, several optional
>> WebSocket features have seen more mainstream use, and Python 2 was
>> EoL'd. And the existing issues list didn't become any shorter,
>> unfortunately.
>>
>> Questions? Comments? Let me know. Thanks for your interest!
>>
>> --Jacob Champion
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe-at-httpd.apache.org
>> For additional commands, e-mail: users-help-at-httpd.apache.org
>>
>
------=_SW_10102_1595859568_mpa=
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: quoted-printable
Below I running with Windows 32 and using the example mod_we=
bsocket_echo.so.
But with Windows 64 it is no=
t running:
AH00526: Syntax error on line 122 o=
f C:/Apache24/conf/httpd.conf:
Could not find initialization funct=
ion "_echo_init-at-0" for WebSocketHandler modules/mod_websocket_echo.so
<=
/div>
When I change _echo_init-at-0 it is running.
>
So with:
Win32 : e: 12pt;"> find initialization =
function "_echo_init-at-0"
Wi=
n64 : =3d"font-size: 12pt;">find initialization function "echo_init"
<=
div>
conf:
<=
span style=3d"font-size: 12pt;">LoadModule websocket_module modu=
les/mod_websocket.so
ze: 12pt;"><IfModule mod_websocket.c>
&nbs=
p; <Location /echo>
SetHandler webs=
ocket-handler
WebSocketHandler modules/mo=
d_websocket_echo.so _echo_init-at-0
</Location&g=
t;
</IfModule>
iv>
Running the latest 2.4.44-dev
id=3d"editor_signature">
On Monday 27/07/2020 at 14:10, Steffen La=
nd wrote:
=
div>
Build with vcxproj and tested on Windows VS16=
.
All looks fine :
[websocket:info] [pid 24=
28:tid 2268] [client ::1:50195] established new WebSocket connectionv>
Only a few warninf:
>
mod_websocket.c(1186,57): warning C4244: =
'function': conversion from 'apr_int64_t' to 'apr_size_t', possible loss of =
data
mod_websocket.c(1253,37): warning C4244: 'f=
unction': conversion from 'apr_int64_t' to 'size_t', possible loss of data=
i>
mod_websocket.c(1282,45): warning C4244: '+=3d': =
conversion from 'apr_int64_t' to 'apr_size_t', possible loss of datav>
mod_websocket\mod_websocket.c(1283,46): warning C4244: =
'+=3d': conversion from 'apr_int64_t' to 'apr_size_t', possible loss of data=
Is it ok that I make available at <=
a target=3d"_blank" href=3d"https://www.apachelounge.com/download/" style=3d=
"font-size: 12pt;">https://www.apachelounge.com/download/ ?
iv>
Steffen
On Thu=
rsday 16/07/2020 at 04:12, Jacob Champion wrote:
I'm happ=
y to announce version 0.1.2 of mod_websocket:
 =
; websocket/releases/tag/0.1.2">https://github.com/jchampio/apache-websocket/r=
eleases/tag/0.1.2
mod_websocket is an Apache 2.x module that allo=
ws developers to write C-
and C++-based WebSocket services. The intent is=
for mod_websocket plugin
writers to develop their services independently=
of the Apache server API.
This is a "dust off the build" release -- =
the user-facing changes have
been in master for four years, but never off=
icially released. One major
bug has been fixed, a few minor cleanups have=
been made, and a new build
system for *nix platforms was contributed to =
the project. I am also
dropping testing coverage for the obsolete 2.2 ser=
ver line, though I
won't intentionally break 2.2 features until a future =
0.2 release.
=3d Major New Features/Fixes =3d
- Extremely frag=
mented messages no longer cause poor performance and
=
possible DoS conditions. Thanks to Paul Spangler for his fix
 =
; suggestion!
- The CMake build system now supports *nix platform=
s as well as Windows.
Thanks to -at-toniotelli for the =
contribution!
- The 'MaxMessageSize' directive has been renamed to
&nb=
sp; 'WebSocketMaxMessageSize'; its previous spelling is deprec=
ated and
will be removed in the future.
A ful=
l changelist can be seen at the release description on GitHub.
=3d Ma=
jor Known Issues =3d
This is a pre-release, zero-dot module. There ar=
e known issues that may
preclude its use in production systems. Please un=
derstand them and take
steps to avoid them if you decide to deploy mod_we=
bsocket.
- Apache worker threads are completely monopolized by WebSoc=
ket
connections. This makes it possible for a large =
number of connections
to DoS the server.
A mo=
re complete (but not necessarily exhaustive) list is available at
the rep=
o page on GitHub:
ank" href=3d"https://github.com/jchampio/apache-websocket/issues">https://gi=
thub.com/jchampio/apache-websocket/issues
=3d What's Next =3d
=
There's a lot of stuff to do. During my absence from the project,
Web=
Socket has received a transport based on HTTP/2, several optional
WebSock=
et features have seen more mainstream use, and Python 2 was
EoL'd. And th=
e existing issues list didn't become any shorter,
unfortunately.
Q=
uestions? Comments? Let me know. Thanks for your interest!
--Jacob Ch=
ampion
--------------------------------------------------------------=
-------
To unsubscribe, e-mail: users-unsubscribe-at-httpd.apache.org
For=
additional commands, e-mail: users-help-at-httpd.apache.org
e>
------=_SW_10102_1595859568_mpa=--
--===============0269268660==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
Hangout mailing list
Hangout-at-nylxs.com
http://lists.mrbrklyn.com/mailman/listinfo/hangout
--===============0269268660==--