-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for UNIX domain sockets (#120)
* added support for UNIX domain sockets * untested progress * moved cython server string parse to c * regression test for host parse * updated cppcheck suppression * golang bindings * update c_client cppcheck * removed duplicated line * removed github workflow changes * moved unix client to test_unix * missed file * remove atoi usage * warning explanation * removed unused cppcheck suppression * startall for cython valgrind * better string iteration * sorry to commit after requesting review * reverted server string parsing behavior * code hygiene * version bump * syntax credit * version bump not overwritten by pre-commit hook * timezone matching email * padding type * fix port interpretation * revert to existing distribution of responsibilities * deduplicate golang test cases * remove unnecessary inline in header * rewrote to match default branch parsing more closely * more descriptive names * apt-get update before install
- Loading branch information
1 parent
9522d8a
commit d32820f
Showing
19 changed files
with
260 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,11 +27,11 @@ | |
__file__ as _libmc_so_file | ||
) | ||
|
||
__VERSION__ = "1.4.2" | ||
__version__ = "v1.4.2" | ||
__VERSION__ = "1.4.3" | ||
__version__ = "v1.4.3" | ||
__author__ = "mckelvin" | ||
__email__ = "[email protected]" | ||
__date__ = "Thu May 20 18:44:42 2021 +0800" | ||
__date__ = "Fri Dec 1 07:43:12 2023 +0800" | ||
|
||
|
||
class Client(PyClient): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.