aboutsummaryrefslogtreecommitdiffstats
path: root/net/ser/files
diff options
context:
space:
mode:
authorsobomax <sobomax@FreeBSD.org>2005-07-08 02:42:50 +0800
committersobomax <sobomax@FreeBSD.org>2005-07-08 02:42:50 +0800
commit4b2facf2e8dac3b964d30cdbbdd6886d108dc699 (patch)
tree5a170338348589705fd83567cd022e5b508193a2 /net/ser/files
parentbde76377b6012b1ebaaaa7fabcedf67fc9c2fe5f (diff)
downloadfreebsd-ports-gnome-4b2facf2e8dac3b964d30cdbbdd6886d108dc699.tar.gz
freebsd-ports-gnome-4b2facf2e8dac3b964d30cdbbdd6886d108dc699.tar.zst
freebsd-ports-gnome-4b2facf2e8dac3b964d30cdbbdd6886d108dc699.zip
This patch is no longer necessary.
Diffstat (limited to 'net/ser/files')
-rw-r--r--net/ser/files/patch-modules::tm::t_reply.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/net/ser/files/patch-modules::tm::t_reply.c b/net/ser/files/patch-modules::tm::t_reply.c
deleted file mode 100644
index 2404146609e9..000000000000
--- a/net/ser/files/patch-modules::tm::t_reply.c
+++ /dev/null
@@ -1,25 +0,0 @@
-
-$FreeBSD$
-
---- modules/tm/t_reply.c.orig
-+++ modules/tm/t_reply.c
-@@ -686,6 +686,19 @@
- /* if final response received at this branch, allow only INVITE 2xx */
- if (Trans->uac[branch].last_received>=200
- && !(inv_through && Trans->uac[branch].last_received<300)) {
-+ /* don't report on retranmissions */
-+ if (Trans->uac[branch].last_received==new_code) {
-+ DBG("DEBUG: final reply retrasnmission\n");
-+ goto discard;
-+ }
-+ /* if you FR-timed-out, faked a local 408 and 487 came, don't
-+ * report on it either */
-+ if (Trans->uac[branch].last_received==408 && new_code==487) {
-+ DBG("DEBUG: 487 came for a timed-out branch\n");
-+ goto discard;
-+ }
-+ /* this looks however how a very strange status rewrite attempt;
-+ * report on it */
- LOG(L_ERR, "ERROR: t_should_relay: status rewrite by UAS: "
- "stored: %d, received: %d\n",
- Trans->uac[branch].last_received, new_code );