commit: r380 - in branches/branch_3_17: daemon javaapps javalib
[email protected] Sun, 19 Nov 2006 23:53:13 -0500
| Newsgroups | gmane.network.spread.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: jonathan Date: 2006-11-19 23:53:13 -0500 (Sun, 19 Nov 2006) New Revision: 380 Modified: branches/branch_3_17/daemon/Readme.txt branches/branch_3_17/daemon/monitor.c branches/branch_3_17/daemon/sp.h branches/branch_3_17/daemon/spread.c branches/branch_3_17/daemon/spread_params.h branches/branch_3_17/javaapps/build.xml branches/branch_3_17/javalib/SpreadConnection.java Log: Label version as 3.17.4 with build date of November 21, 2006. Modified: branches/branch_3_17/daemon/Readme.txt =================================================================== --- branches/branch_3_17/daemon/Readme.txt 2006-11-20 04:14:03 UTC (rev 379) +++ branches/branch_3_17/daemon/Readme.txt 2006-11-20 04:53:13 UTC (rev 380) @@ -3,7 +3,7 @@ /===========================================================================\ | The Spread Group Communication Toolkit. | -| Copyright (c) 1993-2004 Spread Concepts LLC | +| Copyright (c) 1993-2006 Spread Concepts LLC | | All rights reserved. | | | | The Spread package is licensed under the Spread Open-Source License. | @@ -46,11 +46,11 @@ | WWW : http://www.spread.org and http://www.cnds.jhu.edu | | Contact: [email protected] | | | -| Version 3.17.3 built 15/October/2004 | +| Version 3.17.4 built 21/November/2006 | \===========================================================================/ -XXX XX, 2004 Ver 3.17.x ---------------------------- +November 21, 2006 Ver 3.17.4 +---------------------------- See changes in Changelog file. SOURCE INSTALL: @@ -266,4 +266,4 @@ [email protected] [email protected] - [email protected] + [email protected] Modified: branches/branch_3_17/daemon/monitor.c =================================================================== --- branches/branch_3_17/daemon/monitor.c 2006-11-20 04:14:03 UTC (rev 379) +++ branches/branch_3_17/daemon/monitor.c 2006-11-20 04:53:13 UTC (rev 380) @@ -156,7 +156,7 @@ Alarm( PRINT, "/===========================================================================\\\n"); Alarm( PRINT, "| The Spread Toolkit. |\n"); - Alarm( PRINT, "| Copyright (c) 1993-2001 Spread Concepts LLC |\n"); + Alarm( PRINT, "| Copyright (c) 1993-2006 Spread Concepts LLC |\n"); Alarm( PRINT, "| All rights reserved. |\n"); Alarm( PRINT, "| |\n"); Alarm( PRINT, "| The Spread package is licensed under the Spread Open-Source License. |\n"); @@ -191,7 +191,7 @@ Alarm( PRINT, "| WWW: www.spread.org www.cnds.jhu.edu www.spreadconcepts.com |\n"); Alarm( PRINT, "| Contact: [email protected] |\n"); Alarm( PRINT, "| |\n"); - Alarm( PRINT, "| Version %d.%02d.%02d Built 15/October/2004 |\n", + Alarm( PRINT, "| Version %d.%02d.%02d Built 21/November/2006 |\n", (int)SP_MAJOR_VERSION, (int)SP_MINOR_VERSION, (int)SP_PATCH_VERSION); Alarm( PRINT, "\\===========================================================================/\n"); Modified: branches/branch_3_17/daemon/sp.h =================================================================== --- branches/branch_3_17/daemon/sp.h 2006-11-20 04:14:03 UTC (rev 379) +++ branches/branch_3_17/daemon/sp.h 2006-11-20 04:53:13 UTC (rev 380) @@ -56,7 +56,7 @@ #define DEFAULT_SPREAD_PORT 4803 -#define SPREAD_VERSION ( (3 << 24) | ( 17 << 16) | 3 ) +#define SPREAD_VERSION ( (3 << 24) | ( 17 << 16) | 4 ) #define MAX_GROUP_NAME 32 #define MAX_PRIVATE_NAME 10 /* largest possible size of private_name field of SP_connect() */ Modified: branches/branch_3_17/daemon/spread.c =================================================================== --- branches/branch_3_17/daemon/spread.c 2006-11-20 04:14:03 UTC (rev 379) +++ branches/branch_3_17/daemon/spread.c 2006-11-20 04:53:13 UTC (rev 380) @@ -88,7 +88,7 @@ Alarmp( SPLOG_PRINT, SYSTEM, "/===========================================================================\\\n"); Alarmp( SPLOG_PRINT, SYSTEM, "| The Spread Toolkit. |\n"); - Alarmp( SPLOG_PRINT, SYSTEM, "| Copyright (c) 1993-2002 Spread Concepts LLC |\n"); + Alarmp( SPLOG_PRINT, SYSTEM, "| Copyright (c) 1993-2006 Spread Concepts LLC |\n"); Alarmp( SPLOG_PRINT, SYSTEM, "| All rights reserved. |\n"); Alarmp( SPLOG_PRINT, SYSTEM, "| |\n"); Alarmp( SPLOG_PRINT, SYSTEM, "| The Spread toolkit is licensed under the Spread Open-Source License. |\n"); @@ -130,7 +130,7 @@ Alarmp( SPLOG_PRINT, SYSTEM, "| WWW: www.spread.org www.cnds.jhu.edu www.spreadconcepts.com |\n"); Alarmp( SPLOG_PRINT, SYSTEM, "| Contact: [email protected] |\n"); Alarmp( SPLOG_PRINT, SYSTEM, "| |\n"); - Alarmp( SPLOG_PRINT, SYSTEM, "| Version %d.%02d.%02d Built 15/October/2004 |\n", + Alarmp( SPLOG_PRINT, SYSTEM, "| Version %d.%02d.%02d Built 21/November/2006 |\n", (int)SP_MAJOR_VERSION, (int)SP_MINOR_VERSION, (int)SP_PATCH_VERSION ); Alarmp( SPLOG_PRINT, SYSTEM, "\\===========================================================================/\n"); Modified: branches/branch_3_17/daemon/spread_params.h =================================================================== --- branches/branch_3_17/daemon/spread_params.h 2006-11-20 04:14:03 UTC (rev 379) +++ branches/branch_3_17/daemon/spread_params.h 2006-11-20 04:53:13 UTC (rev 380) @@ -37,7 +37,7 @@ #define SP_MAJOR_VERSION 3 #define SP_MINOR_VERSION 17 -#define SP_PATCH_VERSION 3 +#define SP_PATCH_VERSION 4 #define SPREAD_PROTOCOL 3 #define DEFAULT_SPREAD_PORT 4803 Modified: branches/branch_3_17/javaapps/build.xml =================================================================== --- branches/branch_3_17/javaapps/build.xml 2006-11-20 04:14:03 UTC (rev 379) +++ branches/branch_3_17/javaapps/build.xml 2006-11-20 04:53:13 UTC (rev 380) @@ -8,10 +8,10 @@ <project name="spread" default="jar" basedir="."> <property name="Name" value="Spread"/> - <property name="version" value="3.17.3"/> + <property name="version" value="3.17.4"/> <property name="project" value="spread"/> <property name="title" value="${Name} ${version} API for Java"/> - <property name="year" value="2004"/> + <property name="year" value="2006"/> <property name="build.compiler" value="jikes"/> <property name="build.dir" value="dest"/> <property name="build.src" value="${build.dir}/src"/> Modified: branches/branch_3_17/javalib/SpreadConnection.java =================================================================== --- branches/branch_3_17/javalib/SpreadConnection.java 2006-11-20 04:14:03 UTC (rev 379) +++ branches/branch_3_17/javalib/SpreadConnection.java 2006-11-20 04:53:13 UTC (rev 380) @@ -89,7 +89,7 @@ ////////////////////// private static final int SP_MAJOR_VERSION = 3; private static final int SP_MINOR_VERSION = 17; - private static final int SP_PATCH_VERSION = 3; + private static final int SP_PATCH_VERSION = 4; // The default authentication method ////////////////////////////////////