Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -748,6 +748,7 @@ jobs:
api-level: 30
arch: x86_64
script: |
adb root
adb push build/tests_android_x86_64 /data/local/tmp/tests
adb push build/tests_header_only_android_x86_64 /data/local/tmp/tests_header_only
adb shell chmod +x /data/local/tmp/tests /data/local/tmp/tests_header_only
Expand Down
3 changes: 2 additions & 1 deletion include/tinycsocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#ifndef TINYCSOCKET_INTERNAL_H_
#define TINYCSOCKET_INTERNAL_H_

static const char* const TCS_VERSION_TXT = "v0.3.62";
static const char* const TCS_VERSION_TXT = "v0.3.63";
static const char* const TCS_LICENSE_TXT =
"Copyright 2018 Markus Lindelöw\n"
"\n"
Expand Down Expand Up @@ -2831,6 +2831,7 @@ static TcsResult errno2retcode(int error_code)
case EINPROGRESS:
return TCS_IN_PROGRESS;
case EPERM:
case EACCES:
return TCS_ERROR_PERMISSION_DENIED;
case ECONNREFUSED:
return TCS_ERROR_CONNECTION_REFUSED;
Expand Down
2 changes: 1 addition & 1 deletion src/tinycsocket_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#ifndef TINYCSOCKET_INTERNAL_H_
#define TINYCSOCKET_INTERNAL_H_

static const char* const TCS_VERSION_TXT = "v0.3.62";
static const char* const TCS_VERSION_TXT = "v0.3.63";
static const char* const TCS_LICENSE_TXT =
"Copyright 2018 Markus Lindelöw\n"
"\n"
Expand Down
1 change: 1 addition & 0 deletions src/tinycsocket_posix.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ static TcsResult errno2retcode(int error_code)
case EINPROGRESS:
return TCS_IN_PROGRESS;
case EPERM:
case EACCES:
return TCS_ERROR_PERMISSION_DENIED;
case ECONNREFUSED:
return TCS_ERROR_CONNECTION_REFUSED;
Expand Down
Loading