Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jawil committed Feb 20, 2018
1 parent 83be4c2 commit bfc8aa9
Showing 1 changed file with 1 addition and 875 deletions.

1 comment on commit bfc8aa9

@taoyzou
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

from socket import *
import time
s=socket.socket(AF_INET,SOCK_STREAM)
s.connect(("192.168.168.5",1001))
time.sleep(s)
s.send(b'"THis is my number ,im a ga,please call me from there +86 15877817333 chapter Minister,BUICK祝您身体健康 muiboin misoah tnodevils vor nonne。-10.24"')
tm=s.recv(1024)
s.close()
print("The time of server is %s"%tm.decode('ascii'))

Please sign in to comment.