Skip to content

Commit

Permalink
UPD: use port 12500 in all examples
Browse files Browse the repository at this point in the history
  • Loading branch information
desty2k committed Jun 14, 2021
1 parent b12bcb7 commit aa10408
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/balanced_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from QtPyNetwork.models import Device

IP = "127.0.0.1"
PORT = 7890
PORT = 12500


class Main(QObject):
Expand Down
2 changes: 1 addition & 1 deletion examples/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from QtPyNetwork.client import QThreadedClient

IP = "127.0.0.1"
PORT = 7890
PORT = 12500


class Main(QObject):
Expand Down
2 changes: 1 addition & 1 deletion examples/threaded_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from QtPyNetwork.models import Device

IP = "127.0.0.1"
PORT = 7890
PORT = 12500


class Main(QObject):
Expand Down

0 comments on commit aa10408

Please sign in to comment.