Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-esp32
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-esp32
Commits
1efcd21b
Commit
1efcd21b
authored
Apr 12, 2019
by
Victor Aprea
Committed by
Me No Dev
Apr 12, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
replace with strerror (#2663)
parent
7b5cd47d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
libraries/WiFi/src/WiFiClient.cpp
libraries/WiFi/src/WiFiClient.cpp
+7
-7
No files found.
libraries/WiFi/src/WiFiClient.cpp
View file @
1efcd21b
...
...
@@ -279,7 +279,7 @@ int WiFiClient::setOption(int option, int *value)
{
int
res
=
setsockopt
(
fd
(),
IPPROTO_TCP
,
option
,
(
char
*
)
value
,
sizeof
(
int
));
if
(
res
<
0
)
{
log_e
(
"fail on fd %d, errno: %d,
\"
%s
\"
"
,
fd
(),
errno
,
esp_err_to_name
(
errno
));
log_e
(
"fail on fd %d, errno: %d,
\"
%s
\"
"
,
fd
(),
errno
,
strerror
(
errno
));
}
return
res
;
}
...
...
@@ -289,7 +289,7 @@ int WiFiClient::getOption(int option, int *value)
size_t
size
=
sizeof
(
int
);
int
res
=
getsockopt
(
fd
(),
IPPROTO_TCP
,
option
,
(
char
*
)
value
,
&
size
);
if
(
res
<
0
)
{
log_e
(
"fail on fd %d, errno: %d,
\"
%s
\"
"
,
fd
(),
errno
,
esp_err_to_name
(
errno
));
log_e
(
"fail on fd %d, errno: %d,
\"
%s
\"
"
,
fd
(),
errno
,
strerror
(
errno
));
}
return
res
;
}
...
...
@@ -362,7 +362,7 @@ size_t WiFiClient::write(const uint8_t *buf, size_t size)
}
}
else
if
(
res
<
0
)
{
log_e
(
"fail on fd %d, errno: %d,
\"
%s
\"
"
,
fd
(),
errno
,
esp_err_to_name
(
errno
));
log_e
(
"fail on fd %d, errno: %d,
\"
%s
\"
"
,
fd
(),
errno
,
strerror
(
errno
));
if
(
errno
!=
EAGAIN
)
{
//if resource was busy, can try again, otherwise give up
stop
();
...
...
@@ -406,7 +406,7 @@ int WiFiClient::read(uint8_t *buf, size_t size)
int
res
=
-
1
;
res
=
_rxBuffer
->
read
(
buf
,
size
);
if
(
_rxBuffer
->
failed
())
{
log_e
(
"fail on fd %d, errno: %d,
\"
%s
\"
"
,
fd
(),
errno
,
esp_err_to_name
(
errno
));
log_e
(
"fail on fd %d, errno: %d,
\"
%s
\"
"
,
fd
(),
errno
,
strerror
(
errno
));
stop
();
}
return
res
;
...
...
@@ -416,7 +416,7 @@ int WiFiClient::peek()
{
int
res
=
_rxBuffer
->
peek
();
if
(
_rxBuffer
->
failed
())
{
log_e
(
"fail on fd %d, errno: %d,
\"
%s
\"
"
,
fd
(),
errno
,
esp_err_to_name
(
errno
));
log_e
(
"fail on fd %d, errno: %d,
\"
%s
\"
"
,
fd
(),
errno
,
strerror
(
errno
));
stop
();
}
return
res
;
...
...
@@ -430,7 +430,7 @@ int WiFiClient::available()
}
int
res
=
_rxBuffer
->
available
();
if
(
_rxBuffer
->
failed
())
{
log_e
(
"fail on fd %d, errno: %d,
\"
%s
\"
"
,
fd
(),
errno
,
esp_err_to_name
(
errno
));
log_e
(
"fail on fd %d, errno: %d,
\"
%s
\"
"
,
fd
(),
errno
,
strerror
(
errno
));
stop
();
}
return
res
;
...
...
@@ -452,7 +452,7 @@ void WiFiClient::flush() {
toRead
=
(
a
>
WIFI_CLIENT_FLUSH_BUFFER_SIZE
)
?
WIFI_CLIENT_FLUSH_BUFFER_SIZE
:
a
;
res
=
recv
(
fd
(),
buf
,
toRead
,
MSG_DONTWAIT
);
if
(
res
<
0
)
{
log_e
(
"fail on fd %d, errno: %d,
\"
%s
\"
"
,
fd
(),
errno
,
esp_err_to_name
(
errno
));
log_e
(
"fail on fd %d, errno: %d,
\"
%s
\"
"
,
fd
(),
errno
,
strerror
(
errno
));
stop
();
break
;
}
...
...
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