Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
mongoose
Commits
c839a61f
Commit
c839a61f
authored
May 15, 2015
by
NickCis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding mg_vprintf and mg_vprintf_data in order to use va_list like functions
parent
c8e88e17
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
5 deletions
+23
-5
mongoose.c
mongoose.c
+21
-5
mongoose.h
mongoose.h
+2
-0
No files found.
mongoose.c
View file @
c839a61f
...
...
@@ -1951,13 +1951,21 @@ static void write_chunk(struct connection *conn, const char *buf, int len) {
}
size_t
mg_printf
(
struct
mg_connection
*
conn
,
const
char
*
fmt
,
...)
{
struct
connection
*
c
=
MG_CONN_2_CONN
(
conn
);
va_list
ap
;
int
ret
;
va_start
(
ap
,
fmt
);
ns_vprintf
(
c
->
ns_
conn
,
fmt
,
ap
);
ret
=
mg_vprintf
(
conn
,
fmt
,
ap
);
va_end
(
ap
);
return
ret
;
}
size_t
mg_vprintf
(
struct
mg_connection
*
conn
,
const
char
*
fmt
,
va_list
ap
)
{
struct
connection
*
c
=
MG_CONN_2_CONN
(
conn
);
ns_vprintf
(
c
->
ns_conn
,
fmt
,
ap
);
return
c
->
ns_conn
->
send_iobuf
.
len
;
}
...
...
@@ -2790,16 +2798,24 @@ size_t mg_send_data(struct mg_connection *c, const void *data, int data_len) {
}
size_t
mg_printf_data
(
struct
mg_connection
*
c
,
const
char
*
fmt
,
...)
{
struct
connection
*
conn
=
MG_CONN_2_CONN
(
c
);
va_list
ap
;
int
ret
;
va_start
(
ap
,
fmt
);
ret
=
mg_vprintf_data
(
c
,
fmt
,
ap
);
va_end
(
ap
);
return
ret
;
}
size_t
mg_vprintf_data
(
struct
mg_connection
*
c
,
const
char
*
fmt
,
va_list
ap
)
{
struct
connection
*
conn
=
MG_CONN_2_CONN
(
c
);
int
len
;
char
mem
[
IOBUF_SIZE
],
*
buf
=
mem
;
terminate_headers
(
c
);
va_start
(
ap
,
fmt
);
len
=
ns_avprintf
(
&
buf
,
sizeof
(
mem
),
fmt
,
ap
);
va_end
(
ap
);
if
(
len
>=
0
)
{
write_chunk
((
struct
connection
*
)
conn
,
buf
,
len
);
...
...
mongoose.h
View file @
c839a61f
...
...
@@ -104,8 +104,10 @@ void mg_send_status(struct mg_connection *, int status_code);
void
mg_send_header
(
struct
mg_connection
*
,
const
char
*
name
,
const
char
*
val
);
size_t
mg_send_data
(
struct
mg_connection
*
,
const
void
*
data
,
int
data_len
);
size_t
mg_printf_data
(
struct
mg_connection
*
,
const
char
*
format
,
...);
size_t
mg_vprintf_data
(
struct
mg_connection
*
,
const
char
*
format
,
va_list
ap
);
size_t
mg_write
(
struct
mg_connection
*
,
const
void
*
buf
,
size_t
len
);
size_t
mg_printf
(
struct
mg_connection
*
conn
,
const
char
*
fmt
,
...);
size_t
mg_vprintf
(
struct
mg_connection
*
conn
,
const
char
*
fmt
,
va_list
ap
);
size_t
mg_websocket_write
(
struct
mg_connection
*
,
int
opcode
,
const
char
*
data
,
size_t
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