Skip to content

Commit

Permalink
Added Unix Sockets support (#389)
Browse files Browse the repository at this point in the history
  • Loading branch information
francis-clairicia authored Jan 18, 2025
1 parent a374c9d commit 80371ec
Show file tree
Hide file tree
Showing 181 changed files with 24,893 additions and 4,583 deletions.
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ tox run -q -f mypy
]
}
```
> :warning: **NEVER** run all the test suite with VS code integrated testing tool ! There are 8000+ tests.
> :warning: **NEVER** run all the test suite with VS code integrated testing tool ! There are 10_000+ tests.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ You choose the data format and the library takes care of the rest.

This project is especially useful for simple **message** exchange between clients and servers.

Works with TCP and UDP.
Works with TCP, UDP, and Unix sockets.

Interested ? Here is the documentation : https://easynetwork.readthedocs.io/

Expand Down
10 changes: 10 additions & 0 deletions benchmark_server/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions benchmark_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ native-tls = "0.2.12"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
statrs = "0.17.1"
uuid = { version = "1.11.0", features = ["v4"] }
7 changes: 5 additions & 2 deletions benchmark_server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@ ENV PIP_NO_CACHE_DIR=true

RUN pip install -U pip

RUN mkdir -p /usr/src
COPY servers /usr/src/servers
# Install dependencies prior to copy scripts
RUN mkdir -p /usr/src/servers
COPY servers/requirements.txt /usr/src/servers/requirements.txt
RUN pip install -r /usr/src/servers/requirements.txt

COPY servers /usr/src/servers

ARG EASYNETWORK_SDIST

COPY $EASYNETWORK_SDIST /easynetwork.tar.gz
Expand Down
Loading

0 comments on commit 80371ec

Please sign in to comment.