[sr-dev] Re: [kamailio/kamailio] tcp_send_timeout not used on reused socket (Issue #3443)

2023-11-13 Thread schoberw via sr-dev
The patch is a really small change. So it should be easy to add. I would aprreciate to find it in the stable branch to avoic private builds all the time. I understand, that my task is done so far. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issue

[sr-dev] Re: [kamailio/kamailio] tcp_send_timeout not used on reused socket (Issue #3443)

2023-11-13 Thread schoberw via sr-dev
Closed #3443 as completed. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3443#event-10941705624 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio (SER) - Devel

[sr-dev] Re: [kamailio/kamailio] tcp_send_timeout not used on reused socket (Issue #3443)

2023-11-13 Thread Henning Westerholt via sr-dev
@schoberw your pull request got merged already some time ago. Is there something missing in this issue? Otherwise it should be closed. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3443#issuecomment-1808139951 You are receiving this because you

[sr-dev] Re: [kamailio/kamailio] tcp_send_timeout not used on reused socket (Issue #3443)

2023-11-08 Thread schoberw via sr-dev
What is missing and why it doesnt go into upstream? Why it was not added to 5.7.2? -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3443#issuecomment-1801319989 You are receiving this because you are subscribed to this thread. Message ID: ___

[sr-dev] Re: [kamailio/kamailio] tcp_send_timeout not used on reused socket (Issue #3443)

2023-11-08 Thread github-actions[bot] via sr-dev
This issue is stale because it has been open 6 weeks with no activity. Remove stale label or comment or this will be closed in 2 weeks. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3443#issuecomment-1801302673 You are receiving this because yo

[sr-dev] Re: [kamailio/kamailio] tcp_send_timeout not used on reused socket (Issue #3443)

2023-07-27 Thread schoberw
Erratum: It **is** inherited - I had oberwritten the TCP_USER_TIMEOUT in handle_new_connect() with a missing TICKS_TO_S() - so it was a too high value (ticks instead of seconds). Tried again in tcp_init() on the listening socket: ```diff --- a/src/core/tcp_main.c +++ b/src/core/tcp_main.c @@ -

[sr-dev] Re: [kamailio/kamailio] tcp_send_timeout not used on reused socket (Issue #3443)

2023-07-27 Thread schoberw
I made working patch on the current master branch: ```diff --- a/src/core/tcp_main.c +++ b/src/core/tcp_main.c @@ -4324,10 +4324,25 @@ static inline int handle_new_connect(struct socket_info *si) struct tcp_connection *tcpconn; socklen_t su_len; int new_sock; + int o