I'm confused with these:
modparam("dialog", "ka_timer", 10)
modparam("dialog", "ka_interval", 300)
Would this be more or less correct:
ka_timer = "run the keep-alive timer every Xs"
ka_interval = "send options keep-alive packets every Xs"
But.. how are they related?
I think it's:
- The ka_timer is what sends the OPTIONS but they will only be sent every ka_interval to endpoints? So in the 10s example, the timer is run every 10s, it checks if ka_interval has passed since last OPTIONS was sent to endpoint, and acts accordingly... This means that the combinations of ka_timer=10 with ka_interval=300 would send OPTIONS ever 300-309s right?
Does this make sense?
Thanks,
Joel.