projects
/
sip-router
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
34b9b59
)
usrloc: fixed missing symbol for ul_cseq_delay
author
Daniel-Constantin Mierla
<miconda@gmail.com>
Sat, 2 May 2020 12:29:53 +0000
(14:29 +0200)
committer
Daniel-Constantin Mierla
<miconda@gmail.com>
Sat, 2 May 2020 12:29:53 +0000
(14:29 +0200)
src/modules/usrloc/urecord.c
patch
|
blob
|
history
diff --git
a/src/modules/usrloc/urecord.c
b/src/modules/usrloc/urecord.c
index
faddeac
..
8e5258b
100644
(file)
--- a/
src/modules/usrloc/urecord.c
+++ b/
src/modules/usrloc/urecord.c
@@
-44,7
+44,7
@@
/*! contact matching mode */
int ul_matching_mode = CONTACT_ONLY;
/*! retransmission detection interval in seconds */
-int cseq_delay = 20;
+int
ul_
cseq_delay = 20;
/*!
* \brief Create and initialize new record structure
@@
-801,7
+801,7
@@
int get_ucontact(urecord_t* _r, str* _c, str* _callid, str* _path, int _cseq,
return -1;
if (_cseq==ptr->cseq) {
ul_get_act_time();
- return (ptr->last_modified+cseq_delay>ul_act_time)?-2:-1;
+ return (ptr->last_modified+
ul_
cseq_delay>ul_act_time)?-2:-1;
}
}
*_co = ptr;