summaryrefslogtreecommitdiff
path: root/include
Commit message (Collapse)AuthorAge
* menc: make it re-entrantAlfred E. Heggestad2016-12-28
|
* mnat: make it re-entrantAlfred E. Heggestad2016-12-26
|
* cmd: check for duplicated entriesAlfred E. Heggestad2016-11-27
| | | | | | | | | | | - registering duplicate short commands is no longer possible - disable a couple of short commands, use long command instead (short commands should only be used for very frequently used things) - menu: properly register/unregister digit handlers for active calls thanks to Juha Heinanen for reporting an issue with the 'a' key
* bump version to 0.5.0Alfred E. Heggestad2016-09-20
|
* remove ua_prm(), use ua_account() insteadAlfred E. Heggestad2016-09-04
|
* play: make it re-entrant, add struct playerAlfred E. Heggestad2016-09-04
|
* vidcodec: add 'intra' parameter to decoder apiAlfred E. Heggestad2016-08-17
| | | | | | | | - the intra flag must be set to true, if the decoded video frame is a full intra frame (Key frame) - the video decoder can use this flag to cancel sending of FIR packets
* cmd: make it fully re-entrantAlfred E. Heggestad2016-08-07
|
* change value of KEYCODE_REL to 0x04, EOT (end of transmission)Alfred E. Heggestad2016-08-07
|
* cmd: add support for long commandsAlfred E. Heggestad2016-08-07
| | | | | | | | | | | | | | | | | | - Long commands are commands that is 2 or more characters, and MUST be completed by pressing enter. - A given command can have a long-command, a short-command or both. - All long commands are using '/' (slash) prefix - a simple TAB-completion is supported, while punching in your long command you can press TAB to see a list of commands that matches the input string. Feedback is welcome, specially on the long-command strings itself. If you want to suggest changes, please make a small and non-intrusive patch and send it as a Pull Request (PR).
* define KEYCODE_NONE and change value of KEYCODE_REL to -1Alfred E. Heggestad2016-08-06
|
* define KEYCODE_REL for key releaseAlfred E. Heggestad2016-07-31
|
* add '@' command to switch calls using line numbersAlfred E. Heggestad2016-07-26
| | | | | | | | | | | 1. for a given UA, each call has a unique line number starting from 1 2. the list of calls is sorted in an arbitrary order, but the last list element indicates "current call" 3. the '@' command takes a numeric argument which is the line-number of the wanted call
* conf: add handler argument to line-handlerAlfred E. Heggestad2016-07-24
|
* contact: make contacts re-entrantAlfred E. Heggestad2016-07-24
|
* added config 'call_max_calls' to limit maximum number of calls per uaAlfred E. Heggestad2016-07-23
|
* call: add sequential line-numbers for multiple calls (ref #141)Alfred E. Heggestad2016-07-23
|
* cmd: add application data to cmd_argAlfred E. Heggestad2016-07-22
|
* baresip version 0.4.20Alfred E. Heggestad2016-07-22
|
* add support for rtp_timeout and redialAlfred E. Heggestad2016-07-19
| | | | | | | | | | | | | | | | 1. Added support for RTP timeout. The feature is disabled by default and can be enabled with config "rtp_timeout N" where N is the number of seconds of RTP inactivity. If this is detected, the call is closed with a "special" SIP reason code of 701. 2. Added support for automatic re-connect in the menu module. This can be enabled by setting the 2 config items: redial_attempts 3 redial_delay 5 This work was contributed by Sveriges Radio. Thanks goes to Ola Palm and Jim Eld.
* log: rename parameter to avoid conflict with 'log'Alfred E. Heggestad2016-06-08
|
* config: added 'audio_path' config variableJuha Heinanen2016-06-07
|
* config: store dns nameservers in a stringAlfred E. Heggestad2016-06-06
|
* net: make networking code re-entrantAlfred E. Heggestad2016-06-06
| | | | | | | | | | | - The network instance is now in struct network and does not use any local/static data - A new top-level struct in baresip.c owns the single instance of struct network it is a long-term goal to remove all local/static data from libbaresip and make it fully re-entrant.
* config: add "call_local_timeout" config optionAlfred E. Heggestad2016-06-05
| | | | | | | the config option is used for incoming calls, if the call is not answered after X seconds. The default value is 120 seconds. If the value is set to 0 the timeout timer is not enabled.
* ua: added ua exit handlerAlfred E. Heggestad2016-06-05
|
* baresip version 0.4.19Alfred E. Heggestad2016-05-20
|
* aucodec: split srate into srate and crate (Clock Rate)Alfred E. Heggestad2016-05-01
|
* mos: use stdint typesAlfred E. Heggestad2016-03-22
|
* mos: add pseudo Mean Opinion Score routineAlfred E. Heggestad2016-03-21
| | | | thanks to Lorenzo Mangani for the original patch
* baresip release v0.4.18Alfred E. Heggestad2016-03-12
|
* make call_is_onhold() publicAlfred E. Heggestad2016-02-27
|
* release baresip 0.4.17Alfred E. Heggestad2016-01-17
|
* selftest: silent output, add optional verbose -vAlfred E. Heggestad2016-01-09
|
* move playing of ringtones to the menu-moduleAlfred E. Heggestad2016-01-09
|
* move password_prompt function to ui.cAlfred E. Heggestad2016-01-03
|
* conf: keep the struct conf allocatedAlfred E. Heggestad2016-01-03
|
* baresip version 0.4.16Alfred E. Heggestad2015-12-01
|
* ua: char -> const charAlfred E. Heggestad2015-11-30
|
* add command-line option -u to add extra UA paramsAlfred E. Heggestad2015-11-30
| | | | | | | | | | - also move module pre-loading to after all arguments are parsed - the extra UA parameters will be appended to the end of the UA accounts string. Example $ baresip -umedianat=turn
* added UA_EVENT_EXITAlfred E. Heggestad2015-11-22
|
* ua: add event UA_EVENT_SHUTDOWNAlfred E. Heggestad2015-11-22
| | | | | | | | | | | - this event is sent when the uag is shutting down - modules can subscribe to this event to check when the shutdown sequence has started - presence,mwi: add usage of SHUTDOWN event and add 500ms delay fixes #30 https://github.com/alfredh/baresip/issues/30
* presence: use struct sipevent_sock instance from coreAlfred E. Heggestad2015-10-31
| | | | | | | | | | - remove own instance of "struct sipevent_sock" in notifier - add a new handler uag_set_sub_handler for incoming SUBSCRIBE messages after this patch there should be only 1 global instance of sipevent_sock, in ua.c -- this patch will also fix a bug where sipevent could not find the subscription/notification and replies with 481
* call: check address-family of incoming SDP offerAlfred E. Heggestad2015-10-29
| | | | this fixes #79
* call: add direction flagAlfred E. Heggestad2015-10-25
|
* added experimental module v4l2_codecAlfred E. Heggestad2015-10-25
|
* move H.264 packetization code from avcodec to coreAlfred E. Heggestad2015-10-25
|
* audio: add API to set source/player while in callAlfred E. Heggestad2015-10-11
| | | | | | | | | | | int audio_set_source(struct audio *au, const char *mod, const char *device); int audio_set_player(struct audio *au, const char *mod, const char *device); example usage: audio_set_player(call_audio(ua_call(uag_cur())), "alsa", "default"); fixes #70
* ua: add support for hold+answerAlfred E. Heggestad2015-10-11
| | | | | | | - added ua_hold_answer() which will first put on-hold the active call (if exist) and then answer the new incoming call fixes #50
* move nested structs outside of 'struct config'Alfred E. Heggestad2015-09-30
| | | | | | | | | | - nested structs will be visible in global namespace in C - when baresip.h is compiled with a C++ compiler, the nested structs will be places in local namespace of struct config making them all global, so they can be compiled with both C and C++ thanks to Gary Metalle for reporting this :)