999_message_no_body.py 612 B

1234567891011121314151617181920212223
  1. import inc_sip as sip
  2. import inc_sdp as sdp
  3. # Incoming MESSAGE without body is now accepted
  4. #
  5. complete_msg = \
  6. """MESSAGE sip:localhost SIP/2.0
  7. Via: SIP/2.0/UDP 192.168.0.14:5060;rport;branch=z9hG4bKPj9db9
  8. Max-Forwards: 70
  9. From: <sip:192.168.0.14>;tag=08cd5bfc2d8a4fddb1f5e59c6961d298
  10. To: <sip:localhost>
  11. Call-ID: 3373d9eb32aa458db7e69c7ea51e0bd7
  12. CSeq: 23809 MESSAGE
  13. Contact: <sip:192.168.0.14:5060>
  14. User-Agent: PJSUA v0.8.0-trunk/win32
  15. Content-Type: text/plain
  16. Content-Length: 50
  17. """
  18. sendto_cfg = sip.SendtoCfg( "empty MESSAGE", "--null-audio --auto-answer 200",
  19. "", 200, complete_msg=complete_msg)