~ubuntu-branches/ubuntu/natty/linphone/natty

« back to all changes in this revision

Viewing changes to oRTP/include/ortp/rtpsession.h

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Mimram, Kilian Krause, Samuel Mimram
  • Date: 2007-12-05 11:24:25 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20071205112425-odfikcvg5j313rnl
Tags: 2.0.1-1
[ Kilian Krause ]
* New upstream release.
* Conflict with libortp5-dev to fix conflicting file
  (/usr/include/ortp/event.h). (Closes: #454281)

[ Samuel Mimram ]
* liblinphone2-dev conflicts with liblinphone1-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
        unsigned int recv_bytes; /* used for bandwidth estimation */
140
140
        struct timeval recv_bw_start; /* used for bandwidth estimation */
141
141
        rtp_stats_t stats;
 
142
        int recv_errno;
 
143
        int send_errno;
142
144
}RtpStream;
143
145
 
144
146
typedef struct _RtcpStream
345
347
void rtp_session_get_last_recv_time(RtpSession *session, struct timeval *tv);
346
348
int rtp_session_bye(RtpSession *session, const char *reason);
347
349
 
 
350
int rtp_session_get_last_send_error_code(RtpSession *session);
 
351
void rtp_session_clear_send_error_code(RtpSession *session);
 
352
int rtp_session_get_last_recv_error_code(RtpSession *session);
 
353
void rtp_session_clear_recv_error_code(RtpSession *session);
 
354
 
348
355
/*private */
349
356
void rtp_session_init(RtpSession *session, int mode);
350
357
#define rtp_session_set_flag(session,flag) (session)->flags|=(flag)