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
f2b0b9c7
Commit
f2b0b9c7
authored
Feb 24, 2015
by
Sergey Lyubka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Win32 build in mg_websocket_write()
parent
b3866439
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
mongoose.c
mongoose.c
+3
-3
No files found.
mongoose.c
View file @
f2b0b9c7
...
...
@@ -601,13 +601,13 @@ int ns_socketpair(sock_t sp[2]) {
// TODO(lsm): use non-blocking resolver
static
int
ns_resolve2
(
const
char
*
host
,
struct
in_addr
*
ina
)
{
#ifdef NS_ENABLE_GETADDRINFO
#ifdef NS_ENABLE_GETADDRINFO
int
rv
=
0
;
struct
addrinfo
hints
,
*
servinfo
,
*
p
;
struct
sockaddr_in
*
h
=
NULL
;
char
*
ip
=
NS_MALLOC
(
17
);
memset
(
ip
,
'\0'
,
17
);
memset
(
&
hints
,
0
,
sizeof
hints
);
hints
.
ai_family
=
AF_INET
;
hints
.
ai_socktype
=
SOCK_STREAM
;
...
...
@@ -2998,9 +2998,9 @@ size_t mg_websocket_write(struct mg_connection *conn, int opcode,
copy_len
=
4
+
data_len
;
}
else
{
// 64-bit length field
copy
[
1
]
=
127
;
const
uint32_t
hi
=
htonl
((
uint32_t
)
((
uint64_t
)
data_len
>>
32
));
const
uint32_t
lo
=
htonl
(
data_len
&
0xffffffff
);
copy
[
1
]
=
127
;
memcpy
(
copy
+
2
,
&
hi
,
sizeof
(
hi
));
memcpy
(
copy
+
6
,
&
lo
,
sizeof
(
lo
));
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