voiceip / tinyphone

Minimalist Windows / OSx / Linux SIP Softphone with API Control
GNU General Public License v3.0
122 stars 36 forks source link

Set uaConfig.maxCalls #94

Closed pdesaulniers-vertisoft closed 4 months ago

pdesaulniers-vertisoft commented 4 months ago

config.json contains a maxCalls variable. However, this variable was not passed to PJSIP, which meant that the maximum number of calls was limited to 4 (the default value) :

    // endpoint.hpp

    /**
     * Maximum calls to support (default: 4). The value specified here
     * must be smaller than the compile time maximum settings
     * PJSUA_MAX_CALLS, which by default is 32. To increase this
     * limit, the library must be recompiled with new PJSUA_MAX_CALLS
     * value.
     */
    unsigned        maxCalls;
AppVeyorBot commented 4 months ago

:white_check_mark: Build tinyphone 1.0.377 completed (commit https://github.com/voiceip/tinyphone/commit/53621e5283 by @pdesaulniers-vertisoft)

AppVeyorBot commented 4 months ago

:white_check_mark: Build tinyphone 1.0.377 completed (commit https://github.com/voiceip/tinyphone/commit/53621e5283 by @pdesaulniers-vertisoft)

kingster commented 4 months ago

Thanks for fix :)