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
06116274
Commit
06116274
authored
Sep 21, 2015
by
Marko Mikulicic
Committed by
Sergey Lyubka
Sep 22, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Serve a http file on quantex
PUBLISHED_FROM=856d2e0bdaddece638d215c252fabeb9ea2d7809
parent
f0149184
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
mongoose.c
mongoose.c
+8
-3
No files found.
mongoose.c
View file @
06116274
...
@@ -2161,12 +2161,13 @@ static sock_t mg_open_listening_socket(union socket_address *sa, int proto) {
...
@@ -2161,12 +2161,13 @@ static sock_t mg_open_listening_socket(union socket_address *sa, int proto) {
socklen_t
sa_len
=
socklen_t
sa_len
=
(
sa
->
sa
.
sa_family
==
AF_INET
)
?
sizeof
(
sa
->
sin
)
:
sizeof
(
sa
->
sin6
);
(
sa
->
sa
.
sa_family
==
AF_INET
)
?
sizeof
(
sa
->
sin
)
:
sizeof
(
sa
->
sin6
);
sock_t
sock
=
INVALID_SOCKET
;
sock_t
sock
=
INVALID_SOCKET
;
#if
ndef MG_CC3200
#if
!defined(MG_CC3200) && !defined(RTOS_SDK)
int
on
=
1
;
int
on
=
1
;
#endif
#endif
if
((
sock
=
socket
(
sa
->
sa
.
sa_family
,
proto
,
0
))
!=
INVALID_SOCKET
&&
if
((
sock
=
socket
(
sa
->
sa
.
sa_family
,
proto
,
0
))
!=
INVALID_SOCKET
&&
#ifndef MG_CC3200
/* CC3200 doesn't support either */
#if !defined(MG_CC3200) && \
!defined(RTOS_SDK)
/* CC3200 nor ESP8266 don't support either */
#if defined(_WIN32) && defined(SO_EXCLUSIVEADDRUSE)
#if defined(_WIN32) && defined(SO_EXCLUSIVEADDRUSE)
/* "Using SO_REUSEADDR and SO_EXCLUSIVEADDRUSE" http://goo.gl/RmrFTm */
/* "Using SO_REUSEADDR and SO_EXCLUSIVEADDRUSE" http://goo.gl/RmrFTm */
!
setsockopt
(
sock
,
SOL_SOCKET
,
SO_EXCLUSIVEADDRUSE
,
(
void
*
)
&
on
,
!
setsockopt
(
sock
,
SOL_SOCKET
,
SO_EXCLUSIVEADDRUSE
,
(
void
*
)
&
on
,
...
@@ -2189,7 +2190,7 @@ static sock_t mg_open_listening_socket(union socket_address *sa, int proto) {
...
@@ -2189,7 +2190,7 @@ static sock_t mg_open_listening_socket(union socket_address *sa, int proto) {
!
bind
(
sock
,
&
sa
->
sa
,
sa_len
)
&&
!
bind
(
sock
,
&
sa
->
sa
,
sa_len
)
&&
(
proto
==
SOCK_DGRAM
||
listen
(
sock
,
SOMAXCONN
)
==
0
))
{
(
proto
==
SOCK_DGRAM
||
listen
(
sock
,
SOMAXCONN
)
==
0
))
{
#if
ndef MG_CC3200
/* TODO(rojer): Fix this. */
#if
!defined(MG_CC3200) && !defined(RTOS_SDK)
/* TODO(rojer): Fix this. */
mg_set_non_blocking_mode
(
sock
);
mg_set_non_blocking_mode
(
sock
);
/* In case port was set to 0, get the real port number */
/* In case port was set to 0, get the real port number */
(
void
)
getsockname
(
sock
,
&
sa
->
sa
,
&
sa_len
);
(
void
)
getsockname
(
sock
,
&
sa
->
sa
,
&
sa_len
);
...
@@ -3403,6 +3404,7 @@ static const struct {
...
@@ -3403,6 +3404,7 @@ static const struct {
#ifndef MG_DISABLE_FILESYSTEM
#ifndef MG_DISABLE_FILESYSTEM
#ifndef MG_DISABLE_DAV
static
int
mg_mkdir
(
const
char
*
path
,
uint32_t
mode
)
{
static
int
mg_mkdir
(
const
char
*
path
,
uint32_t
mode
)
{
#ifndef _WIN32
#ifndef _WIN32
return
mkdir
(
path
,
mode
);
return
mkdir
(
path
,
mode
);
...
@@ -3411,6 +3413,7 @@ static int mg_mkdir(const char *path, uint32_t mode) {
...
@@ -3411,6 +3413,7 @@ static int mg_mkdir(const char *path, uint32_t mode) {
return
_mkdir
(
path
);
return
_mkdir
(
path
);
#endif
#endif
}
}
#endif
static
struct
mg_str
get_mime_type
(
const
char
*
path
,
const
char
*
dflt
,
static
struct
mg_str
get_mime_type
(
const
char
*
path
,
const
char
*
dflt
,
const
struct
mg_serve_http_opts
*
opts
)
{
const
struct
mg_serve_http_opts
*
opts
)
{
...
@@ -4259,7 +4262,9 @@ static void send_ssi_file(struct mg_connection *nc, const char *path, FILE *fp,
...
@@ -4259,7 +4262,9 @@ static void send_ssi_file(struct mg_connection *nc, const char *path, FILE *fp,
static
const
struct
mg_str
btag
=
MG_STR
(
"<!--#"
);
static
const
struct
mg_str
btag
=
MG_STR
(
"<!--#"
);
static
const
struct
mg_str
d_include
=
MG_STR
(
"include"
);
static
const
struct
mg_str
d_include
=
MG_STR
(
"include"
);
static
const
struct
mg_str
d_call
=
MG_STR
(
"call"
);
static
const
struct
mg_str
d_call
=
MG_STR
(
"call"
);
#ifndef MG_DISABLE_POPEN
static
const
struct
mg_str
d_exec
=
MG_STR
(
"exec"
);
static
const
struct
mg_str
d_exec
=
MG_STR
(
"exec"
);
#endif
char
buf
[
BUFSIZ
],
*
p
=
buf
+
btag
.
len
;
/* p points to SSI directive */
char
buf
[
BUFSIZ
],
*
p
=
buf
+
btag
.
len
;
/* p points to SSI directive */
int
ch
,
offset
,
len
,
in_ssi_tag
;
int
ch
,
offset
,
len
,
in_ssi_tag
;
...
...
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