summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2007-03-01 11:44:26 +0000
committerMartin Wilke <miwi@FreeBSD.org>2007-03-01 11:44:26 +0000
commitec134eaa3ef4e8e96760daa6383c66d044d79c20 (patch)
tree423e89df6e54a7d2b708e54b8d7eda584697a29a /benchmarks
parent- Added support for non-threaded tcl (if installed) (diff)
- Update to 1.1.r8.20070225
PR: 109648 Submitted by: Artem Naluzhny<tut@nhamon.com.ua> (maintainer)
Notes
Notes: svn path=/head/; revision=186282
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/sipp/Makefile4
-rw-r--r--benchmarks/sipp/distinfo6
-rw-r--r--benchmarks/sipp/files/patch-call.cpp24
3 files changed, 29 insertions, 5 deletions
diff --git a/benchmarks/sipp/Makefile b/benchmarks/sipp/Makefile
index e6fdb49576ce..5e9bc444eb00 100644
--- a/benchmarks/sipp/Makefile
+++ b/benchmarks/sipp/Makefile
@@ -6,10 +6,10 @@
#
PORTNAME= sipp
-PORTVERSION= 1.1.r8.20070130
+PORTVERSION= 1.1.r8.20070225
CATEGORIES= net
MASTER_SITES= http://sipp.sourceforge.net/snapshots/
-DISTNAME= ${PORTNAME}.2007-01-30
+DISTNAME= ${PORTNAME}.2007-02-25
MAINTAINER= tut@nhamon.com.ua
COMMENT= SIP testing tool
diff --git a/benchmarks/sipp/distinfo b/benchmarks/sipp/distinfo
index 0847adebf01e..77affe1df658 100644
--- a/benchmarks/sipp/distinfo
+++ b/benchmarks/sipp/distinfo
@@ -1,3 +1,3 @@
-MD5 (sipp.2007-01-30.tar.gz) = b7c7fad1c3191d50c56fbc5d95417d29
-SHA256 (sipp.2007-01-30.tar.gz) = 07221e61f1c5ab0d0f0f0cbebbeb7080f570a4ff23ec455d87b5dfce9f0a4660
-SIZE (sipp.2007-01-30.tar.gz) = 184238
+MD5 (sipp.2007-02-25.tar.gz) = 62b222653661d6ce94fb652764b476d9
+SHA256 (sipp.2007-02-25.tar.gz) = 5875ed98e70f52d35bb5b259c89773212090ba5ba26f875dd898373d6879d682
+SIZE (sipp.2007-02-25.tar.gz) = 184450
diff --git a/benchmarks/sipp/files/patch-call.cpp b/benchmarks/sipp/files/patch-call.cpp
new file mode 100644
index 000000000000..3a8651d50f70
--- /dev/null
+++ b/benchmarks/sipp/files/patch-call.cpp
@@ -0,0 +1,24 @@
+$FreeBSD$
+
+--- call.cpp.orig Tue Jan 23 20:02:26 2007
++++ call.cpp Fri Feb 9 01:49:46 2007
+@@ -2216,13 +2216,17 @@
+
+ auth_marker = src;
+ auth_marker_len = strchr(src, ']') - src;
+- strcpy(my_auth_user, service);
+- strcpy(my_auth_pass, auth_password);
+ /* Look for optional username and password parameters */
+ /* add aka_OP, aka_AMF, aka_K */
+ key = getKeywordParam(src, "username=", my_auth_user);
++ if (my_auth_user[0]==0){
++ strcpy(my_auth_user, service);
++ }
+ memset(my_auth_pass,0,KEYWORD_SIZE);
+ key = getKeywordParam(src, "password=", my_auth_pass);
++ if (my_auth_pass[0]==0){
++ strcpy(my_auth_pass, auth_password);
++ }
+ memset(my_aka_OP,0,KEYWORD_SIZE);
+ key = getKeywordParam(src, "aka_OP=", my_aka_OP);
+ memset(my_aka_AMF,0,KEYWORD_SIZE);