~ubuntu-branches/ubuntu/saucy/sflphone/saucy

« back to all changes in this revision

Viewing changes to sflphone-common/src/audio/audiortp/AudioRtpFactory.h

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2011-04-05 14:14:13 UTC
  • mfrom: (4.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20110405141413-hbwbunfsxpn2rtre
Tags: 0.9.13-1
* New upstream release
  - remove Debian patch (applied upstream)
* Fix watch file
* Remove unnecessary versioned dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
#include <stdexcept>
35
35
#include <cc++/thread.h>
 
36
#include <ccrtp/CryptoContext.h>
36
37
 
37
38
#include "sip/SdesNegotiator.h"
38
39
#include "audio/codecs/audiocodec.h"
212
213
        // Field used when initializinga udio rtp session
213
214
        // May be set manually or from config using initAudioRtpConfig
214
215
        bool _helloHashEnabled;
 
216
 
 
217
        /** Remote srtp crypto context to be set into incoming data queue. */
 
218
        ost::CryptoContext *remoteContext;
 
219
 
 
220
        /** Local srtp crypto context to be set into outgoing data queue. */
 
221
        ost::CryptoContext *localContext;
215
222
};
216
223
}
217
224
#endif // __AUDIO_RTP_FACTORY_H__