Skip to content

Commit

Permalink
call_control: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dilyanpalauzov authored and miconda committed Apr 25, 2023
1 parent b2b4eda commit b1f783d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/modules/call_control/call_control.c
Expand Up @@ -102,7 +102,7 @@ typedef struct AVP_List {
typedef struct CallControlSocket {
char *name; // name
int sock; // socket
int timeout; // how many miliseconds to wait for an answer
int timeout; // how many milliseconds to wait for an answer
time_t last_failure; // time of the last failure
char data[BUFFER_SIZE]; // buffer for the answer data
} CallControlSocket;
Expand All @@ -124,7 +124,7 @@ int parse_param_stop(unsigned int type, void *val);
static CallControlSocket callcontrol_socket = {
"/run/callcontrol/socket", // name
-1, // sock
500, // timeout in 500 miliseconds if there is no answer
500, // timeout in 500 milliseconds if there is no answer
0, // time of the last failure
"" // data
};
Expand Down
6 changes: 3 additions & 3 deletions src/modules/call_control/doc/call_control.8
Expand Up @@ -115,11 +115,11 @@ see
.BR kamailio.cfg(5)
.PP
Full documentation on Kamailio is available at
.I http://www.kamailio.org/.
.I https://www.kamailio.org/.
.PP
Mailing lists:
.nf
users@lists.kamailio.org - Kamailio user community
sr-users@lists.kamailio.org - Kamailio user community
.nf
devel@lists.kamailio.org - Kamailio development, new features and unstable version
sr-dev@lists.kamailio.org - Kamailio development, new features and unstable version

2 changes: 1 addition & 1 deletion src/modules/call_control/doc/call_control_admin.xml
Expand Up @@ -76,7 +76,7 @@
<para>
Callcontrol is invoked by calling the call_control() function for the
initial INVITE of every call we want to apply a limit to. This will end
up as a request to the callcontrol application, which will interogate
up as a request to the callcontrol application, which will interrogate
the rating engine for a time limit for the given caller and destination.
The rating engine will determine if the destination has any associated
cost and if the caller has any credit limit and if so will return the
Expand Down

0 comments on commit b1f783d

Please sign in to comment.