Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
83a9a723
Commit
83a9a723
authored
May 10, 2016
by
Damien George
Browse files
py/mperrno: Add EAFNOSUPPORT definition.
parent
7e1f5809
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/mperrno.h
View file @
83a9a723
...
...
@@ -66,6 +66,7 @@
#define MP_EPIPE (32) // Broken pipe
#define MP_EDOM (33) // Math argument out of domain of func
#define MP_ERANGE (34) // Math result not representable
#define MP_EAFNOSUPPORT (97) // Address family not supported by protocol
#define MP_ENOTCONN (107) // Transport endpoint is not connected
#define MP_ETIMEDOUT (110) // Connection timed out
...
...
@@ -109,6 +110,7 @@
#define MP_EPIPE EPIPE
#define MP_EDOM EDOM
#define MP_ERANGE ERANGE
#define MP_EAFNOSUPPORT EAFNOSUPPORT
#define MP_ENOTCONN ENOTCONN
#define MP_ETIMEDOUT ETIMEDOUT
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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