Răsfoiți Sursa

kamailio-kemi-framework: note that some of core function are in KSR.corex

Daniel-Constantin Mierla 4 ani în urmă
părinte
comite
3cd27179eb
1 a modificat fișierele cu 7 adăugiri și 1 ștergeri
  1. 7 1
      kamailio-kemi-framework/docs/core.md

+ 7 - 1
kamailio-kemi-framework/docs/core.md

@@ -15,11 +15,17 @@ The exports to KEMI framework from the core of Kamailio:
 
 
 Example of using KEMI functions exported to Lua interpreter:
 Example of using KEMI functions exported to Lua interpreter:
 
 
+
 ```Lua
 ```Lua
 KSR.dbg("a debug message from Lua script\n");
 KSR.dbg("a debug message from Lua script\n");
 KSR.hdr.remove("Route");
 KSR.hdr.remove("Route");
 ```
 ```
-Exported functions from core directly to KSR module or KSR.hdr submodule are listed in the next sections.
+
+Note: if a function exported by the core to native Kamailio configuration file is missing here,
+check the exports of `KSR.corex` submodule, some of them have alternatives there
+(e.g., `force_send_socket()` can be done with `KSR.corex.set_send_scoket()`).
+
+Exported functions from core directly to KSR module, KSR.pv or KSR.hdr submodules are listed in the next sections.
 
 
 ### KSR.add_local_rport() ###
 ### KSR.add_local_rport() ###