Ignore:
Timestamp:
Dec 10, 2010 11:04:30 AM (13 years ago)
Author:
bennylp
Message:

Migration of current video works from private repository to this repository. This closed #1176

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/2.0-dev/pjmedia/include/pjmedia/transport.h

    r2945 r3392  
    2929#include <pjmedia/types.h> 
    3030#include <pjmedia/errno.h> 
     31#include <pj/string.h> 
    3132 
    3233/** 
     
    255256 
    256257} pjmedia_tranport_media_option; 
     258 
     259 
     260/** 
     261 * Media socket info is used to describe the underlying sockets 
     262 * to be used as media transport. 
     263 */ 
     264typedef struct pjmedia_sock_info 
     265{ 
     266    /** The RTP socket handle */ 
     267    pj_sock_t       rtp_sock; 
     268 
     269    /** Address to be advertised as the local address for the RTP 
     270     *  socket, which does not need to be equal as the bound 
     271     *  address (for example, this address can be the address resolved 
     272     *  with STUN). 
     273     */ 
     274    pj_sockaddr     rtp_addr_name; 
     275 
     276    /** The RTCP socket handle. */ 
     277    pj_sock_t       rtcp_sock; 
     278 
     279    /** Address to be advertised as the local address for the RTCP 
     280     *  socket, which does not need to be equal as the bound 
     281     *  address (for example, this address can be the address resolved 
     282     *  with STUN). 
     283     */ 
     284    pj_sockaddr     rtcp_addr_name; 
     285 
     286} pjmedia_sock_info; 
    257287 
    258288 
Note: See TracChangeset for help on using the changeset viewer.