Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Samuel Kemmler
FA Server Client
Commits
8090694b
Commit
8090694b
authored
Sep 18, 2021
by
Samuel Kemmler
Browse files
Connect to localhost
parent
433d7cca
Changes
1
Show whitespace changes
Inline
Side-by-side
client.py
View file @
8090694b
...
...
@@ -11,7 +11,8 @@ def jacobi_iteration(u):
context
=
zmq
.
Context
()
socket
=
context
.
socket
(
zmq
.
REQ
)
socket
.
connect
(
"tcp://192.168.2.110:5555"
)
# connect to localhost
socket
.
connect
(
"tcp://127.0.0.1:5555"
)
print
(
"Requesting parameters…"
)
socket
.
send
(
b
"jacobi_request"
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment