Hello,
you can find guidelines to write the commit message at:
http://sip-router.org/wiki/devel/git-commit-guidelines
The goal is to get to kind of common format to make life easier for
tracking changes and building summaries out of the logs. Please add if
you think something should be there in the commit messages.
Thanks,
Daniel
--
Daniel-Constantin Mierla
http://www.asipto.com/
Module: sip-router
Branch: master
Commit: fa35f54d24d75902b21203da47a51f5e07d467bb
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=fa35f54…
Author: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Date: Thu Apr 16 13:31:43 2009 +0200
Merge commit 'origin/ser_core_cvs'
* commit 'origin/ser_core_cvs':
make: use C_INCLUDES for includes
tcp: stun fixes
tcp: tcp_blocking_connect timeout fix
tcp: stats: added init & destroy macros
tcp: minor stats fixes
tcp: internal macro-hooks for stats & events
tcp: helper internal macros
Do not try to backlist and do not try DNS failover for blind UACs as
Safety check added to verify whether the static buffers have
---
Module: sip-router
Branch: ser_core_cvs
Commit: 7bb2b4ca371c5c97305c446be64f5ce42371a906
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=7bb2b4c…
Author: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Date: Thu Apr 9 19:10:56 2009 +0000
tcp: internal macro-hooks for stats & events
- added macros for tcp statistics (for now empty, keeping
more statistics will only involve redefining them):
TCP_STATS_ESTABLISHED(state) - new connection established
TCP_STATS_CONNECT_FAILED() - new outgoing connection failed
TCP_STATS_LOCAL_REJECT() - new incoming connection rejected
(max. no exceeded)
TCP_STATS_CON_TIMEOUT() - connection closed for being idle too
long
TCP_STATS_SEND_TIMEOUT() - send fails due to a timeout
TCP_STATS_SENDQ_FULL() - send fails because of the buffering
capacity being exceed (async mode
only)
- added macros for various tcp events (for now some of them are
used for logging):
TCP_EV_CONNECT_RST(...) - connect attempt received RST
TCP_EV_CONNECT_UNREACHABLE(...)
TCP_EV_CONNECT_TIMEOUT(...)
TCP_EV_CONNECT_NO_MORE_PORTS(...)
TCP_EV_CONNECT_ERR(...) - other connect error
TCP_EV_SEND_TIMEOUT(...)
TCP_EV_SENDQ_FULL(...)
TCP_EV_IDLE_CONN_CLOSED(...)
---
tcp_ev.h | 97 ++++++++++++++++++
tcp_main.c | 328 +++++++++++++++++++++++++++++++++++++++++++++++------------
tcp_read.c | 53 ++++++++--
tcp_stats.h | 72 +++++++++++++
4 files changed, 475 insertions(+), 75 deletions(-)
Diff: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commitdiff;h=7bb…