修改三方通话功能,在发起三方通话时,先保持住主叫,然后再拉回主叫到会议

CConfigLocal.h 331B

12345678910111213141516171819202122
  1. #pragma once
  2. #include <set>
  3. #include <string>
  4. using namespace std;
  5. class CConfigLocal
  6. {
  7. public:
  8. CConfigLocal();
  9. ~CConfigLocal();
  10. void load();
  11. bool isContains(char* p_tel);// true contains , false not contain
  12. void getCallNumFromSipAddr(char* p_sip_uri, char* p_tel_buf);
  13. private:
  14. int m_res_num;
  15. set<string> m_ResSet;
  16. };