Ignore:
Timestamp:
Jul 5, 2012 7:26:29 AM (12 years ago)
Author:
nanang
Message:

Fix #1547:

  • Added PJMEDIA_MAX_MRU to specify maximum packet size in receiving direction.
  • Added max_pkt_size into pj_turn_sock_cfg, default is PJ_TURN_MAX_PKT_LEN.
  • Fixed hardcoded MTU settings in media transport SRTP.
  • Added MIN_CHUNKS_PER_FRM constant in video stream.

Notes:

  • PJMEDIA_MAX_MTU & PJMEDIA_MAX_MRU to specify max packet size for TX and RX dir.
  • For ICE media transport, TURN session limits outgoing packet size to PJ_TURN_MAX_PKT_LEN (the size of internal buffer for inserting TURN overheads).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjnath/include/pjnath/turn_sock.h

    r3553 r4197  
    109109typedef struct pj_turn_sock_cfg 
    110110{ 
     111    /** 
     112     * Packet buffer size. 
     113     * 
     114     * Default value is PJ_TURN_MAX_PKT_LEN. 
     115     */ 
     116    unsigned max_pkt_size; 
     117 
    111118    /** 
    112119     * QoS traffic type to be set on this transport. When application wants 
Note: See TracChangeset for help on using the changeset viewer.