Skip to content
Snippets Groups Projects
Commit 5738798c authored by Tristan Matthews's avatar Tristan Matthews
Browse files

iax: create iaxvoiplink on stack

parent a07ea76e
No related branches found
No related tags found
No related merge requests found
...@@ -43,16 +43,9 @@ ...@@ -43,16 +43,9 @@
#include "config/yamlemitter.h" #include "config/yamlemitter.h"
IAXAccount::IAXAccount(const std::string& accountID) IAXAccount::IAXAccount(const std::string& accountID)
: Account(accountID, "iax2"), password_(), : Account(accountID, "iax2"), password_(), link_(accountID)
link_(new IAXVoIPLink(accountID))
{} {}
IAXAccount::~IAXAccount()
{
delete link_;
}
void IAXAccount::serialize(Conf::YamlEmitter &emitter) void IAXAccount::serialize(Conf::YamlEmitter &emitter)
{ {
Conf::MappingNode accountmap(NULL); Conf::MappingNode accountmap(NULL);
...@@ -142,8 +135,8 @@ std::map<std::string, std::string> IAXAccount::getAccountDetails() const ...@@ -142,8 +135,8 @@ std::map<std::string, std::string> IAXAccount::getAccountDetails() const
void IAXAccount::registerVoIPLink() void IAXAccount::registerVoIPLink()
{ {
try { try {
link_->init(); link_.init();
link_->sendRegister(this); link_.sendRegister(this);
} catch (const VoipLinkException &e) { } catch (const VoipLinkException &e) {
ERROR("IAXAccount: %s", e.what()); ERROR("IAXAccount: %s", e.what());
} }
...@@ -153,8 +146,8 @@ void ...@@ -153,8 +146,8 @@ void
IAXAccount::unregisterVoIPLink() IAXAccount::unregisterVoIPLink()
{ {
try { try {
link_->sendUnregister(this); link_.sendUnregister(this);
link_->terminate(); link_.terminate();
} catch (const VoipLinkException &e) { } catch (const VoipLinkException &e) {
ERROR("IAXAccount: %s", e.what()); ERROR("IAXAccount: %s", e.what());
} }
...@@ -171,5 +164,5 @@ IAXAccount::loadConfig() ...@@ -171,5 +164,5 @@ IAXAccount::loadConfig()
VoIPLink* IAXAccount::getVoIPLink() VoIPLink* IAXAccount::getVoIPLink()
{ {
return link_; return &link_;
} }
...@@ -32,9 +32,7 @@ ...@@ -32,9 +32,7 @@
#define IAXACCOUNT_H #define IAXACCOUNT_H
#include "account.h" #include "account.h"
#include "noncopyable.h" #include "iaxvoiplink.h"
class IAXVoIPLink;
/** /**
* @file: iaxaccount.h * @file: iaxaccount.h
...@@ -43,7 +41,6 @@ class IAXVoIPLink; ...@@ -43,7 +41,6 @@ class IAXVoIPLink;
class IAXAccount : public Account { class IAXAccount : public Account {
public: public:
IAXAccount(const std::string& accountID); IAXAccount(const std::string& accountID);
~IAXAccount();
virtual void serialize(Conf::YamlEmitter &emitter); virtual void serialize(Conf::YamlEmitter &emitter);
virtual void unserialize(const Conf::MappingNode &map); virtual void unserialize(const Conf::MappingNode &map);
...@@ -66,10 +63,9 @@ class IAXAccount : public Account { ...@@ -66,10 +63,9 @@ class IAXAccount : public Account {
} }
private: private:
NON_COPYABLE(IAXAccount);
// Account login information: password // Account login information: password
std::string password_; std::string password_;
IAXVoIPLink *link_; IAXVoIPLink link_;
virtual VoIPLink* getVoIPLink(); virtual VoIPLink* getVoIPLink();
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment