Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
d7e1a4e8
Commit
d7e1a4e8
authored
Apr 09, 2008
by
Emmanuel Milou
Browse files
IAX2 register/unregister from the GUI works very well
parent
eac99852
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/iaxvoiplink.cpp
View file @
d7e1a4e8
...
...
@@ -430,7 +430,9 @@ IAXVoIPLink::sendUnregister()
_nextRefreshStamp
=
0
;
_debug
(
"IAX2 send unregister
\n
"
);
setRegistrationState
(
Unregistered
);
Manager
::
instance
().
unregistrationSucceed
(
""
);
return
false
;
}
...
...
src/managerimpl.cpp
View file @
d7e1a4e8
...
...
@@ -798,7 +798,6 @@ ManagerImpl::registrationSucceed(const AccountID& accountid)
{
Account
*
acc
=
getAccount
(
accountid
);
if
(
acc
)
{
//acc->setState(true);
_debug
(
"REGISTRATION SUCCEED
\n
"
);
if
(
_dbus
)
_dbus
->
getConfigurationManager
()
->
accountsChanged
();
}
...
...
@@ -808,12 +807,8 @@ ManagerImpl::registrationSucceed(const AccountID& accountid)
void
ManagerImpl
::
unregistrationSucceed
(
const
AccountID
&
accountid
)
{
Account
*
acc
=
getAccount
(
accountid
);
if
(
acc
)
{
//acc->setState(true);
_debug
(
"UNREGISTRATION SUCCEED
\n
"
);
if
(
_dbus
)
_dbus
->
getConfigurationManager
()
->
accountsChanged
();
}
_debug
(
"UNREGISTRATION SUCCEED
\n
"
);
if
(
_dbus
)
_dbus
->
getConfigurationManager
()
->
accountsChanged
();
}
//THREAD=VoIP
...
...
@@ -1751,7 +1746,6 @@ ManagerImpl::getCallStatus(const std::string& sequenceId)
}
//THREAD=Main
/* Unused, Deprecated */
bool
ManagerImpl
::
getConfigAll
(
const
std
::
string
&
sequenceId
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment