Ignore:
Timestamp:
Mar 29, 2007 9:54:21 PM (17 years ago)
Author:
bennylp
Message:

Added ICE-CONTROLLING and ICE-CONTROLLED STUN attribute types

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia/rtp.h

    r974 r1114  
    7878 
    7979/** 
    80  * RTP packet header. 
     80 * RTP packet header. Note that all RTP functions here will work with this 
     81 * header in network byte order. 
    8182 */ 
    8283#pragma pack(1) 
     
    230231 * @param ses           The session. 
    231232 * @param default_pt    Default payload type. 
    232  * @param sender_ssrc   SSRC used for outgoing packets. 
     233 * @param sender_ssrc   SSRC used for outgoing packets, in host byte order. 
    233234 * 
    234235 * @return              PJ_SUCCESS if successfull. 
     
    263264 * position regardless of any options present in the RTP packet. 
    264265 * 
     266 * Note that this function does not modify the returned RTP header to 
     267 * host byte order. 
     268 * 
    265269 * @param ses           The session. 
    266270 * @param pkt           The received RTP packet. 
    267271 * @param pkt_len       The length of the packet. 
    268  * @param hdr           Upon return will point to the location of the RTP header 
    269  *                      inside the packet. 
     272 * @param hdr           Upon return will point to the location of the RTP  
     273 *                      header inside the packet. Note that the RTP header 
     274 *                      will be given back as is, meaning that the fields 
     275 *                      will be in network byte order. 
    270276 * @param payload       Upon return will point to the location of the 
    271277 *                      payload inside the packet. 
     
    286292 * 
    287293 * @param ses       The session. 
    288  * @param hdr       The RTP header of the incoming packet. 
     294 * @param hdr       The RTP header of the incoming packet. The header must 
     295 *                  be given with fields in network byte order. 
    289296 * @param seq_st    Optional structure to receive the status of the RTP packet 
    290297 *                  processing. 
Note: See TracChangeset for help on using the changeset viewer.