Skip to content

Commit

Permalink
Chore: Remove certrificates
Browse files Browse the repository at this point in the history
  • Loading branch information
ashvardanian committed May 12, 2024
1 parent d709b0b commit 3737d94
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 97 deletions.
File renamed without changes
9 changes: 5 additions & 4 deletions examples/login/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ You would either run `ucall_example_sum_posix` or `ucall_example_sum_uring`.

```sh
sudo apt-get install cmake g++ build-essential
cmake -DCMAKE_BUILD_TYPE=Release -B ./build_release && make -C ./build_release
./build_release/build/bin/ucall_example_sum_posix &
./build_release/build/bin/ucall_example_sum_uring &
cmake -DCMAKE_BUILD_TYPE=Release -B build_release
cmake --build build_release --config Release
build_release/build/bin/ucall_example_sum_posix &
build_release/build/bin/ucall_example_sum_uring &
python examples/bench.py "jsonrpc_client.CaseTCP" --progress
python examples/bench.py "jsonrpc_client.CaseHTTP" --progress
python examples/bench.py "jsonrpc_client.CaseHTTPBatches" --progress
Expand All @@ -43,7 +44,7 @@ kill %%
Want to customize server settings?

```sh
./build_release/build/bin/ucall_example_sum_uring --nic=127.0.0.1 --port=8545 --threads=16 --silent=false
build_release/build/bin/ucall_example_sum_uring --nic=127.0.0.1 --port=8545 --threads=16 --silent=false
```

Want to dispatch more clients and aggregate more accurate statistics?
Expand Down
21 changes: 0 additions & 21 deletions examples/login/certs/cas.pem

This file was deleted.

4 changes: 0 additions & 4 deletions examples/login/certs/gen.sh

This file was deleted.

28 changes: 0 additions & 28 deletions examples/login/certs/main.key

This file was deleted.

20 changes: 0 additions & 20 deletions examples/login/certs/srv.crt

This file was deleted.

17 changes: 0 additions & 17 deletions examples/login/certs/srv.csr

This file was deleted.

4 changes: 2 additions & 2 deletions src/engine_posix.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @brief JSON-RPC implementation for TCP/IP stack with POSIX calls.
* @author Ashot Vardanian
* @brief JSON-RPC implementation for TCP/IP stack with POSIX calls.
* @author Ash Vardanian
*/

#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)
Expand Down
2 changes: 1 addition & 1 deletion src/engine_uring.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* - `IORING_SETUP_COOP_TASKRUN` > 5.19.
* - `IORING_SETUP_SINGLE_ISSUER` > 6.0.
*
* @author Ashot Vardanian
* @author Ash Vardanian
*
* @see Notable links:
* https://man7.org/linux/man-pages/dir_by_project.html#liburing
Expand Down

0 comments on commit 3737d94

Please sign in to comment.