Ignore:
Timestamp:
Aug 6, 2010 1:03:33 AM (14 years ago)
Author:
nanang
Message:

Misc (re #1068), updates in python test:

  • increased receive buffer size in python test driver function inc_sip.Dialog.wait_msg_from(), the previous buffer size (2048) caused socket exception in receiving large SIP packet.
  • updated verification regex in scripts-sendto/330_srtp_prefer_rtp_savp.py (related to changes in #668: omitting media attribute in disabled/rejected media).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/tests/pjsua/inc_sip.py

    r3243 r3251  
    176176                                continue 
    177177                        try: 
    178                                 msg, src_addr = self.sock.recvfrom(2048) 
     178                                msg, src_addr = self.sock.recvfrom(4096) 
    179179                        except: 
    180180                                print "recv() exception: ", sys.exc_info()[0] 
Note: See TracChangeset for help on using the changeset viewer.