Skip to content

Instantly share code, notes, and snippets.

@uhziel
Created March 12, 2020 02:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uhziel/34de5b63c4ae990eff349f8bf0064cf8 to your computer and use it in GitHub Desktop.
Save uhziel/34de5b63c4ae990eff349f8bf0064cf8 to your computer and use it in GitHub Desktop.
the example of using python socket
# -*- coding: utf-8 -*-
import socket
import struct
import threading
TCP_IP = '192.168.1.133'
TCP_PORT = 31436
BUFFER_SIZE = 102400
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((TCP_IP, TCP_PORT))
def read_s(s):
while True:
data = s.recv(BUFFER_SIZE)
if data:
size = struct.unpack("!L", data[0:4])[0] - 4
print "data.size()", len(data)
print "received data:", struct.unpack("!"+str(size)+"s", data[4:])
t = threading.Thread(target=read_s, args=(s,))
t.daemon = True
t.start()
while 1:
send_data = raw_input('> ')
if send_data == "quit":
break
size = 4 + len(send_data)
print "size:", size
s.sendall(struct.pack("!i" + str(len(send_data)) + "s", size, send_data))
s.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment