[SR-Dev] git:master: * Fixed bug in computing expires value for subscription dialogs .

Juha Heinanen jh at tutpro.com
Mon May 11 13:18:48 CEST 2009


Module: sip-router
Branch: master
Commit: ae4856f3db1f4a82a23eaa9c9f305d8f6924bb48
URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=ae4856f3db1f4a82a23eaa9c9f305d8f6924bb48

Author: Juha Heinanen <jh at tutpro.com>
Committer: Juha Heinanen <jh at tutpro.com>
Date:   Mon May 11 14:15:12 2009 +0300

* Fixed bug in computing expires value for subscription dialogs.
  Credits to Anca Vamanu.

---

 modules_k/presence/notify.c |   22 +++++++++++++---------
 1 files changed, 13 insertions(+), 9 deletions(-)

diff --git a/modules_k/presence/notify.c b/modules_k/presence/notify.c
index 87e728e..93dddf0 100644
--- a/modules_k/presence/notify.c
+++ b/modules_k/presence/notify.c
@@ -1096,14 +1096,14 @@ int get_subs_db(str* pres_uri, pres_ev_t* event, str* sender,
 		row = &result->rows[i];
 		row_vals = ROW_VALUES(row);	
 		
-	//	if(row_vals[expires_col].val.int_val< (int)time(NULL))
-	//		continue;
-
-        if(row_vals[reason_col].val.string_val)
-        {
-            if(strlen(row_vals[reason_col].val.string_val) != 0)
-                continue;
-        }
+		//	if(row_vals[expires_col].val.int_val< (int)time(NULL))
+		//		continue;
+
+		if(row_vals[reason_col].val.string_val) {
+		    if(strlen(row_vals[reason_col].val.string_val) != 0)
+			continue;
+		}
+
 		//	s.reason.len= strlen(s.reason.s);
 
 		memset(&s, 0, sizeof(subs_t));
@@ -1148,7 +1148,11 @@ int get_subs_db(str* pres_uri, pres_ev_t* event, str* sender,
 		
 		s.event= event;
 		s.local_cseq = row_vals[cseq_col].val.int_val;
-		s.expires = row_vals[expires_col].val.int_val -(int)time(NULL);
+		if(row_vals[expires_col].val.int_val < (int)time(NULL))
+		    s.expires = 0;
+		else
+		    s.expires = row_vals[expires_col].val.int_val -
+			(int)time(NULL);
 		s.version = row_vals[version_col].val.int_val;
 
 		s_new= mem_copy_subs(&s, PKG_MEM_TYPE);




More information about the sr-dev mailing list