Esempio n. 1
0
import time


# init a client at snoip port
sc = SnoipClient(('0.0.0.0', 50009))

#login 
sc.login('121', 'a121----------------')

#pause and let replies arrive
time.sleep(3)

sc.send_keep_alive()
time.sleep(1)

for i in xrange(10):
    #send invite
    sc.invite('120')

    #pause and let replies arrive
    time.sleep(4)

    with open('large_data.rtp', 'rb') as lines:
        i = 0
        for line in lines:
            sc.feed_rtp(line, i)
            i+=1
            time.sleep(0.5)
            
    sc.request_hangup()
    time.sleep(3)