mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-07 05:53:06 +00:00
sync config when friends are removed too
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@300 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
This commit is contained in:
parent
8120678fe6
commit
3b480f911f
2 changed files with 48 additions and 0 deletions
|
|
@ -663,6 +663,7 @@ void linphone_core_remove_friend(LinphoneCore *lc, LinphoneFriend* fl){
|
|||
if (el!=NULL){
|
||||
lc->friends=ms_list_remove_link(lc->friends,el);
|
||||
linphone_friend_destroy((LinphoneFriend*)el->data);
|
||||
linphone_core_write_friends_config(lc);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
47
linphone/share/C/linphonecsh.1
Normal file
47
linphone/share/C/linphonecsh.1
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
.\" Linphone is an internet phone compatible with the Session Initiation Protocol (SIP: RFC3261 )
|
||||
.TH "linphonecsh" "1" "3.0.0" "Simon MORLAT" "linphone, internet phone"
|
||||
.SH "NAME"
|
||||
.LP
|
||||
linphonecsh \- Sends a command to a linphonec running in daemon mode, and exits.
|
||||
.SH "SYNTAX"
|
||||
.LP
|
||||
linphonec <\fIaction\fP> <\fIARGS...\fP>
|
||||
.br
|
||||
linphonecsh \fI\--help\fP
|
||||
.SH "DESCRIPTION"
|
||||
.LP
|
||||
Linphonecsh is a small utility to send basic commands to a linphonec (console mode linphone) process.
|
||||
Unlike linphonec, linphonecsh does not wait commands from standart input: it takes the command from its arguments
|
||||
and sends it using unix pipe to a linphonec process started in daemon mode.
|
||||
The motivation for this tool is for example to simply execute voip calls from scripts, web-servers, or javascript web pages.
|
||||
.br
|
||||
|
||||
The very first thing to do before doing actions is to ask linphonecsh to spawn a linphonec daemon using
|
||||
.TP
|
||||
\fBlinphonecsh init\fR
|
||||
.br
|
||||
|
||||
When the linphonec daemon is no more needed, the following commands makes it exit properly:
|
||||
.TP
|
||||
\fBlinphonecsh exit\fR
|
||||
.br
|
||||
|
||||
.SH "FILES"
|
||||
.LP
|
||||
By default a linphonec started as a daemon by 'linphonecsh init' does not use a config file.
|
||||
.br
|
||||
|
||||
.SH "ENVIRONMENT VARIABLES"
|
||||
.LP
|
||||
.SH "EXAMPLES"
|
||||
.LP
|
||||
|
||||
.SH "AUTHORS"
|
||||
.LP
|
||||
.br
|
||||
Simon Morlat <simon.morlat at linphone.org>
|
||||
.SH "SEE ALSO"
|
||||
.LP
|
||||
linphonec(1) sipomatic(1) linphone(1)
|
||||
.TH <program> <section number> "<date>" "" "Linux User's Manual"
|
||||
|
||||
Loading…
Add table
Reference in a new issue