Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #107.41K
~153.52K People Reached
Favorite Forums
Favorite Tags
Member Avatar for shak187

#!/bin/python # To test the cdr realtime sending function import string import urllib2 import time import socket port = raw_input("Please enter the bind port like: 1000\n") #wait connect def test(): server = socket.socket(socket.AF_INET,socket.SOCK_STREAM) address = ('192.168.124.16', int(port)) //the local IP address server.bind(address) server.listen(10) while 1: s,addr=server.accept() data = s.recv(2048) print …

Member Avatar for eliasarximan
2
154K