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

« back to all changes in this revision

Viewing changes to sflphone-common/src/sip/sipaccount.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:
50
50
#define OVERRTPSTR "overrtp"
51
51
#define SIPINFOSTR "sipinfo"
52
52
 
53
 
 
54
53
// SIP specific configuration keys
55
54
const Conf::Key expireKey ("expire");
56
55
const Conf::Key interfaceKey ("interface");
695
694
 
696
695
    private:
697
696
 
 
697
        /**
 
698
         * Call specific memory pool initialization size (based on empirical data)
 
699
         */
 
700
        static const int ACCOUNT_MEMPOOL_INIT_SIZE;
 
701
 
 
702
        /**
 
703
         * Call specific memory pool incrementation size
 
704
         */
 
705
        static const int ACCOUNT_MEMPOOL_INC_SIZE;
 
706
 
698
707
        /* Maps a string description of the SSL method
699
708
         * to the corresponding enum value in pjsip_ssl_method.
700
709
         * @param method The string representation
734
743
         */
735
744
        std::string getLoginName (void);
736
745
 
 
746
        /**
 
747
         * List of routes (proxies) used for registration and calls
 
748
         */
737
749
        std::string _routeSet;
738
750
 
 
751
        /**
 
752
         * Private pjsip memory pool for accounts
 
753
         */
 
754
        pj_pool_t *_pool;
 
755
 
739
756
 
740
757
        // The pjsip client registration information
741
758
        pjsip_regc *_regc;