Skip to content

Commit

Permalink
Documentation typos
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbouteiller committed Nov 20, 2022
1 parent e343719 commit 9377b65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/source/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ On all your "client" machines:

.. code-block:: bash
python -m tlspyo --retrieve ip=<server ip>
python -m tlspyo --retrieve --ip=<server ip>
On your "server" machine:
-------------------------
Expand All @@ -45,7 +45,7 @@ On your "server" machine:
if __name__=="__main__":
my_relay = Relay(
port=6667,
port=7776,
password="<password>", # replace <password> by a strong password of your choice
local_com_port=3001
)
Expand All @@ -69,7 +69,7 @@ On your "client" machines:
my_endpoint = Endpoint(
ip_server='<ip server>', # replace <ip server> by the ip of your server machine
port=6667,
port=7776,
password="<password>", # same password as the Relay
groups=groups,
local_com_port=free_port
Expand Down

0 comments on commit 9377b65

Please sign in to comment.