mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-21 14:22:34 +03:00
fa03894a53
git-svn-id: svn://kolibrios.org@2110 a494cfbc-eb01-0410-851d-a64ba20cac60
18 lines
432 B
Python
18 lines
432 B
Python
import kolibri
|
|
|
|
socket = kolibri.socket # Alias for socket module
|
|
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
s.bind('10.0.2.15', 6000)
|
|
if s.connect('192.168.1.101', 5000):
|
|
print("cp2, socket is", s.socket)
|
|
if not s.send("<html></html>"):
|
|
print("Sending failed")
|
|
else:
|
|
data = s.recv(1024)
|
|
print(data)
|
|
s.close()
|
|
else:
|
|
print("Connection failed, socket is", s.socket)
|
|
print("OK")
|