Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongoose
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
f19bbc73
Commit
f19bbc73
authored
Jan 29, 2015
by
Doug Rogers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow for compilation in Visual Studio 9 (2008) with NS_ENABLE_IPV6.
parent
25326b3b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
mongoose.c
mongoose.c
+2
-1
No files found.
mongoose.c
View file @
f19bbc73
...
@@ -79,6 +79,7 @@
...
@@ -79,6 +79,7 @@
#ifdef _MSC_VER
#ifdef _MSC_VER
#pragma comment(lib, "ws2_32.lib") // Linking with winsock library
#pragma comment(lib, "ws2_32.lib") // Linking with winsock library
#endif
#endif
#include <Ws2tcpip.h>
#include <windows.h>
#include <windows.h>
#include <process.h>
#include <process.h>
#ifndef EINPROGRESS
#ifndef EINPROGRESS
...
@@ -2961,9 +2962,9 @@ size_t mg_websocket_write(struct mg_connection *conn, int opcode,
...
@@ -2961,9 +2962,9 @@ size_t mg_websocket_write(struct mg_connection *conn, int opcode,
copy_len
=
4
+
data_len
;
copy_len
=
4
+
data_len
;
}
else
{
}
else
{
// 64-bit length field
// 64-bit length field
copy
[
1
]
=
127
;
const
uint32_t
hi
=
htonl
((
uint32_t
)
((
uint64_t
)
data_len
>>
32
));
const
uint32_t
hi
=
htonl
((
uint32_t
)
((
uint64_t
)
data_len
>>
32
));
const
uint32_t
lo
=
htonl
(
data_len
&
0xffffffff
);
const
uint32_t
lo
=
htonl
(
data_len
&
0xffffffff
);
copy
[
1
]
=
127
;
memcpy
(
copy
+
2
,
&
hi
,
sizeof
(
hi
));
memcpy
(
copy
+
2
,
&
hi
,
sizeof
(
hi
));
memcpy
(
copy
+
6
,
&
lo
,
sizeof
(
lo
));
memcpy
(
copy
+
6
,
&
lo
,
sizeof
(
lo
));
memcpy
(
copy
+
10
,
data
,
data_len
);
memcpy
(
copy
+
10
,
data
,
data_len
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment