User Tools

Site Tools


features:new-in-5.1.x

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
features:new-in-5.1.x [2017/12/07 20:31]
miconda
features:new-in-5.1.x [2017/12/08 08:35]
miconda
Line 42: Line 42:
  
   * https://kamailio.org/docs/modules/devel/modules/topos_redis.html   * https://kamailio.org/docs/modules/devel/modules/topos_redis.html
 +
 +===== KEMI Framework =====
 +
 +Most of the modules have the functions exported to KEMI framework. A tutorial is available at:
 +
 +  * http://kamailio.org/docs/tutorials/devel/kamailio-kemi-framework/
 +
 +This allows writing SIP routing logic in Lua, JavaScript, Python or Squirrel scripting.
  
 ===== New in Old Modules ===== ===== New in Old Modules =====
 +
 +==== acc ====
 +
 +  * added acc_request(reason, table) - writing acc record to log and db backend (if db_url is set)
  
 ==== app_lua ==== ==== app_lua ====
Line 52: Line 64:
  
   * support for variables in parameters of cfg functions   * support for variables in parameters of cfg functions
 +  * implemented rpc command to list kemi functions - app_python.api_list
  
 ==== auth_ephemeral ==== ==== auth_ephemeral ====
  
   * added SHA384 as hashing option   * added SHA384 as hashing option
 +
 +==== benchmark ====
 +
 +  * new parameter 'register' - register a timer id at startup
 +
 +==== cfg_rpc ====
 +
 +  * cfg.reset rpc command to reset all the variables of a certain group
 +
 +==== corex ====
 +
 +  * added $cfg(route) - return name of routing block for crt action
 +  * corex.debug - rpc command to control debug level
 +
 +==== cplc ====
 +
 +  * use route names to set proxy_route modparam
 +
 +==== db_flatstore ====
 +
 +  * added encode delimiter parameter
  
 ==== db_text ==== ==== db_text ====
Line 65: Line 99:
  
   * implemented insert_update() API function   * implemented insert_update() API function
 +
 +==== db_sqlite ====
 +
 +  * new parameter to open some database in read-only
 +  * new parameter to set database journal mode
 +
 +==== db_unixodbc ====
 +
 +  * added support for async queries
 +
 +==== dialplan ====
 +
 +  * added dp_match() and dp_replace() functions
 +  * added append_branch parameter
  
 ==== dialog ==== ==== dialog ====
  
   * $dlg_ctx(timeout_route) returns route block name   * $dlg_ctx(timeout_route) returns route block name
 +  * new parameters - early_timeout and noack_timeout
 +    * early_timeout - set the interval in seconds after which the dialogs in early state (not answered yet) are destroyed. Default value is 300.
 +    * noack_timeout - set the interval in seconds after which the dialogs that were answered with 200ok but didn't receive the ACK are marked for termination (lifetime set to 10 more seconds). Default value 60.
 +  * added dlg_set_ruri()
 +    * sets the r-uri of requests within dialog with the corresponding contact address stored in dialog structure
 +
 +==== dispatcher ====
 +
 +  * add sip protocol scheme to dst uri if missing
 +  * new algorithm - parallel dispatching (12)
 +  * new feature to track keepalive latency statistics
  
 ==== dmq ==== ==== dmq ====
Line 78: Line 137:
   * support to sync with multi contacts per message   * support to sync with multi contacts per message
   * new parameter batch_max_msg_size   * new parameter batch_max_msg_size
 +  * tcp keepalive on client connections
 +  * include server_id in replicated contacts
 +
 +==== evapi ====
 +
 +  * added support for dispatcher worker to send cfg event data directly to connected clients
 +  * allow setting max number of clients via parameter max_clients
  
 ==== drouting ==== ==== drouting ====
  
-   * use keepalive module to monitor GW/destinations (for sort_order 0)+  * use keepalive module to monitor GW/destinations and disable the inactive ones 
 + 
 +==== htable ==== 
 + 
 +  * added functions to remove items using variables 
 +  * implemented starts-with matching for remove functions
  
 ==== ims_charging ==== ==== ims_charging ====
Line 90: Line 161:
  
   * allow regex in RURI field   * allow regex in RURI field
 +
 +==== ims_registrar_pcscf ====
 +
 +  * support for sec-agree parameters
 +
 +==== ipops ====
 +
 +  * new naptr_query() cfg function
 +
 +==== kazoo ====
 +
 +  * added $kzRK to accdess routing key of the payload
 +  * added json.count transformation
 +
 +==== kex ====
 +
 +  * new rpc command - stats.fetch - get statistics in a json document
 +  * setdsturi() supports vars params
  
 ==== lcr ==== ==== lcr ====
Line 95: Line 184:
   * added lcr.load_gws rpc function   * added lcr.load_gws rpc function
   * added possibility to match caller URI userpart to a mtree tvalue   * added possibility to match caller URI userpart to a mtree tvalue
 +
 +==== nat_traversal ====
 +
 +  * handle local generated transactions
 +
 +==== nathelper ====
 +
 +  * allow variables for parameters of nat_uac_test(), fix_nated_sdp() and add_rcv_param()
  
 ==== ndb_redis ==== ==== ndb_redis ====
Line 102: Line 199:
   * new feature to disable server on failure   * new feature to disable server on failure
   * added flush_on_reconnect parameter   * added flush_on_reconnect parameter
 +  * enhanceed access to REDIS replies - support to access array within arrays
 +  * detect argument specifiers for redis_cmd() with three params
 +
 +==== p_usrloc ====
 +
 +  * added config reload framework support for several parameters (they can be changed at runtime via rpc, without restarting)
 +
 +==== path ====
 +
 +  * option to add two path headers and use alias like received value
 +    * enable_r2 - add two path headers, one for incoming socket and one for outgoing socket
 +    * received_format - parameter to control if received value should be in sip uri (as so far) or in contact-alias param format
 +
 +==== permissions ====
 +
 +  * new parameter load_backends
 +    * control what backends should be loaded (1 - address table; 2 - trusted table; 4 - allow file; 8 - deny file)
 +
 +==== pipelimit ====
 +
 +  * match algorithm name case insensitive
  
 ==== presence ==== ==== presence ====
Line 113: Line 231:
   * print cfg line for string transformation errors   * print cfg line for string transformation errors
   * new variable - $hdrc(HName) - return the number of headers matching the name with HName   * new variable - $hdrc(HName) - return the number of headers matching the name with HName
 +  * added received ip/port pvars for advertised ip/port - $RAi, $RAp
 +  * $siz - return source ip, with enclosing square brackets for ipv6
 +  * $Ru - URI format for local socket where the SIP message was received, without trasport parameter for UDP
 +  * $Rut - URI format for local socket where the SIP message was received, always with transport parameter
 +  * $RAu - URI format for local socket where the SIP message was received, without trasport parameter for UDP, using the advertised address if availabe
 +  * $RAut - URI format for local socket where the SIP message was received, always with transport parameter, using the advertised address if available
 +  * added transformations for base58 - {s.encode.base58}, {s.decode.base58}
 +  * implemented {uri.scheme} transformation
 +  * add string {s.corehash} transformation - $(var(myvar){s.corehash}) returns the hash; $(var(myvar){s.corehash,32}) returns the slot
 +  * $prid - get protocol id (int value)
 +  * $csb - shortcut to get the CSeq header body
  
 ==== pua_dialoginfo ==== ==== pua_dialoginfo ====
  
   * added flags to disable caller and/or callee PUBLISH   * added flags to disable caller and/or callee PUBLISH
 +
 +==== pua_reginfo ====
 +
 +  * added support to use outbound proxy for PUBLISH requests
  
 ==== rabbitmq ==== ==== rabbitmq ====
Line 126: Line 259:
  
   * apply method_filtering only on initial requests without to-tag   * apply method_filtering only on initial requests without to-tag
 +  * added server_id to pv attributes
 +
 +==== rtpengine ====
 +
 +  * added stop_recording function
  
 ==== sipcapture ==== ==== sipcapture ====
Line 146: Line 284:
   * added is_alphanumex(tval, eset) function   * added is_alphanumex(tval, eset) function
     * check if tval contains only alphanumeric characters or those from the eset parameter     * check if tval contains only alphanumeric characters or those from the eset parameter
 +
 +==== textops ====
 +
 +  * new function remove_hf_exp(match, skip)
 +    * remove header fields that do not match regex 'skip', but match regex 'match'
  
 ==== tls ==== ==== tls ====
  
   * basic level of libressl compatibility (for openssl v1.0.x)   * basic level of libressl compatibility (for openssl v1.0.x)
 +  * event_route[tls:connection-out] - executed after the connect to destination is done
 +    * using drop() in the event route marks connection for no-send data, so nothing is sent over it, being also closed
 +
 +==== topoh ====
 +
 +  * execute event_route[topoh:msg-outgoing] - executed when a message is going to be sent out
 +    * if drop is used, then the message is no longer processed with topoh
 +  * option to disable uri prefix checks (uri_prefix_checks parameter)
 +
 +==== topos ====
 +
 +  * execute event_route[topos:msg-outgoing] - executed when a message is going to be sent out
 +    * if drop is used, then the message is no longer processed with topos
  
 ==== tm ==== ==== tm ====
  
   * use a stack of structures for faked_env()   * use a stack of structures for faked_env()
 +  * new rpc command tm.list - list details of active transactions
 +  * rpc command tm.clean to clean long time expired transactions (for troubleshooting purposes)
 +  * allow execution of t_continue with callback name
  
 ==== tmx ==== ==== tmx ====
Line 173: Line 332:
   * new parameter db_insert_update: insert into table, update on duplicate key   * new parameter db_insert_update: insert into table, update on duplicate key
   * added more attributes to the result of ul.dump   * added more attributes to the result of ul.dump
 +  * rpc ul.add can set also received and socket fields
 +  * copy server_id when updating contact in memory
  
 ===== New in Core ===== ===== New in Core =====
Line 178: Line 339:
 ==== Interpreter ==== ==== Interpreter ====
  
 +  * hundreds of functions exported to kemi framework and are available to be executed from scripts running in embedded interpreters (Lua, Python, JavaScript and Squirrel)
 ==== Parameters ==== ==== Parameters ====
  
   * ip_free_bind - control if Kamailio should attempt to bind to non local ip   * ip_free_bind - control if Kamailio should attempt to bind to non local ip
   * tcp_reuse_port - reuse tcp sockets   * tcp_reuse_port - reuse tcp sockets
 +  * mem_safety - now enabled by default
 +  * verbose_startup - control if printing routing tree and udp probing buffer debug messages should be printed at startup
 +  * pv_cache_limit - the limit how many pv declarations in the cache
 +  * pv_cache_action - specify what action to be done when the size of pv cache is exceeded
  
 ==== Functions ==== ==== Functions ====
Line 189: Line 355:
   * support for parsing the Call-Info header   * support for parsing the Call-Info header
   * do not terminate on harmless SIGCHLD (e.g., when kemi python scripts create and terminate new processes)   * do not terminate on harmless SIGCHLD (e.g., when kemi python scripts create and terminate new processes)
 +  * added function to return route block name from crt action
 +  * compile with system malloc for pkg if MEMPKG=sys
 +  * if MEMDBGSYS=1, the use a debug variant for system malloc
 +  * support for base58 encoding and decoding
 +  * mem - new functions for pkg/shm - mallocxz() and reallocxf()
 +    * pkg_mallocxz(size) / shm_mallocxz(size) - same as the corresponding malloc function, but the allocated buffer is filled with 0. It is equivalent of { p=malloc(size); if(p) memset(p, 0, size); }
 +    * pkg_reallocxf(p, size)/shm_reallocxf(p, size) - same as the corresponding realloc functions, but the old pointer is always freed, even if the realloc operation fails. The BSDs have reallocf()
 +  * added rpc command core.ppdefines - list preprocessor defines enabled in config
 +  * tcp - new flag F_CONN_NOSEND (mark connection for no-send data)
 +    * if flag set, the data is not sent over the connection
 +    * can be set by drop() inside event_route[tls:connection-out]
 +  * added rpc command core.modules - list the names of loaded modules
 +  * handle hep3 over tcp/tls and print first characters if matching hep3 header fails
 +  * udp - print up to first 100 chars from received packet in debug mode
 +  * pv - new parameters to control the size of pv cache
  
 ==== kamailio.cfg ==== ==== kamailio.cfg ====
 +
 +  * filter out sip scanner even when anti-flood is not enabled
 +  * handle retransmissions also for requests within dialogs
 +  * added log_prefix
 +  * etc - basic and advanced configs relocated to misc/examples/pkg
  
 ===== Tools ===== ===== Tools =====
Line 196: Line 382:
 ==== kamcmd ==== ==== kamcmd ====
  
 +  * larger buffer for receiving the binrcp responses
 ==== kamctl ==== ==== kamctl ====
  
   * added srv command   * added srv command
     * shortcuts to RPC commands to print sockets, aliases and available RPC commands     * shortcuts to RPC commands to print sockets, aliases and available RPC commands
 +  * added db subcommand to mange records in version table
  
 ==== kamcli ==== ==== kamcli ====
  
features/new-in-5.1.x.txt · Last modified: 2018/11/23 15:53 by miconda