[Tinyos-commits] CVS: tinyos-1.x/tools/java/net/tinyos/drip
Drip.java, 1.1, 1.2 DripDaemon.java, 1.1, 1.2 DripSniff.java,
1.1, 1.2
Gilman Tolle
gtolle at users.sourceforge.net
Mon Oct 31 09:04:55 PST 2005
- Previous message: [Tinyos-commits] CVS: tinyos-1.x/tools/java/net/tinyos/drain - New
directory
- Next message: [Tinyos-commits] CVS: tinyos-1.x/tools/java/net/tinyos/drain
Drain.java, NONE, 1.1 DrainConnector.java, NONE,
1.1 DrainLib.java, NONE, 1.1 DrainSniff.java, NONE,
1.1 Makefile, NONE, 1.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/tinyos/tinyos-1.x/tools/java/net/tinyos/drip
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1047
Modified Files:
Drip.java DripDaemon.java DripSniff.java
Log Message:
Added the correct licenses.
Index: Drip.java
===================================================================
RCS file: /cvsroot/tinyos/tinyos-1.x/tools/java/net/tinyos/drip/Drip.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Drip.java 31 Oct 2005 16:58:22 -0000 1.1
--- Drip.java 31 Oct 2005 17:04:53 -0000 1.2
***************
*** 1,2 ****
--- 1,28 ----
+ // $Id$
+
+ /* tab:2
+ *
+ *
+ * "Copyright (c) 2000-2005 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * Permission to use, copy, modify, and distribute this software and its
+ * documentation for any purpose, without fee, and without written agreement is
+ * hereby granted, provided that the above copyright notice, the following
+ * two paragraphs and the author appear in all copies of this software.
+ *
+ * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
+ * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
+ * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
+ * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
+ * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ * AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
+ * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
+ * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS."
+ *
+ */
+
/**
*
***************
*** 4,8 ****
*
* @author Gilman Tolle <get at cs.berkeley.edu>
- * @since 0.1
*/
--- 30,33 ----
Index: DripDaemon.java
===================================================================
RCS file: /cvsroot/tinyos/tinyos-1.x/tools/java/net/tinyos/drip/DripDaemon.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** DripDaemon.java 31 Oct 2005 16:58:22 -0000 1.1
--- DripDaemon.java 31 Oct 2005 17:04:53 -0000 1.2
***************
*** 1,2 ****
--- 1,35 ----
+ // $Id$
+
+ /* tab:2
+ *
+ *
+ * "Copyright (c) 2000-2005 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * Permission to use, copy, modify, and distribute this software and its
+ * documentation for any purpose, without fee, and without written agreement is
+ * hereby granted, provided that the above copyright notice, the following
+ * two paragraphs and the author appear in all copies of this software.
+ *
+ * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
+ * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
+ * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
+ * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
+ * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ * AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
+ * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
+ * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS."
+ *
+ */
+
+ /**
+ *
+ * Daemon-style continual message injector for the Drip protocol.
+ *
+ * @author Gilman Tolle <get at cs.berkeley.edu>
+ */
+
package net.tinyos.drip;
Index: DripSniff.java
===================================================================
RCS file: /cvsroot/tinyos/tinyos-1.x/tools/java/net/tinyos/drip/DripSniff.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** DripSniff.java 31 Oct 2005 16:58:22 -0000 1.1
--- DripSniff.java 31 Oct 2005 17:04:53 -0000 1.2
***************
*** 1,2 ****
--- 1,35 ----
+ // $Id$
+
+ /* tab:2
+ *
+ *
+ * "Copyright (c) 2000-2005 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * Permission to use, copy, modify, and distribute this software and its
+ * documentation for any purpose, without fee, and without written agreement is
+ * hereby granted, provided that the above copyright notice, the following
+ * two paragraphs and the author appear in all copies of this software.
+ *
+ * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
+ * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
+ * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
+ * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
+ * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ * AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
+ * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
+ * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS."
+ *
+ */
+
+ /**
+ *
+ * Packet Sniffer for the Drip protocol
+ *
+ * @author Gilman Tolle <get at cs.berkeley.edu>
+ */
+
package net.tinyos.drip;
- Previous message: [Tinyos-commits] CVS: tinyos-1.x/tools/java/net/tinyos/drain - New
directory
- Next message: [Tinyos-commits] CVS: tinyos-1.x/tools/java/net/tinyos/drain
Drain.java, NONE, 1.1 DrainConnector.java, NONE,
1.1 DrainLib.java, NONE, 1.1 DrainSniff.java, NONE,
1.1 Makefile, NONE, 1.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Tinyos-commits
mailing list