Adam Dunkels | 1 Apr 2007 20:20
Picon

contiki-2.x/doc net.txt,1.1,1.2

Update of /cvsroot/contiki/contiki-2.x/doc
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv26219

Modified Files:
	net.txt 
Log Message:
Documentation updates

Index: net.txt
===================================================================
RCS file: /cvsroot/contiki/contiki-2.x/doc/net.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** net.txt	17 Jun 2006 22:41:23 -0000	1.1
--- net.txt	1 Apr 2007 18:20:41 -0000	1.2
***************
*** 1,4 ****
  /**
! \defgroup net Network functions
   <at> {
  */
--- 1,4 ----
  /**
! \defgroup net Communication stacks
   <at> {
  */

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
(Continue reading)

Adam Dunkels | 1 Apr 2007 20:20
Picon

contiki-2.x/core/net psock.h, 1.1, 1.2 tcpip.h, 1.6, 1.7

Update of /cvsroot/contiki/contiki-2.x/core/net
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv26235

Modified Files:
	psock.h tcpip.h 
Log Message:
Documentation updates

Index: psock.h
===================================================================
RCS file: /cvsroot/contiki/contiki-2.x/core/net/psock.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** psock.h	17 Jun 2006 22:41:18 -0000	1.1
--- psock.h	1 Apr 2007 18:20:55 -0000	1.2
***************
*** 35,39 ****

  /**
!  * \addtogroup net
   *  <at> {
   */
--- 35,39 ----

  /**
!  * \addtogroup uip
   *  <at> {
   */

(Continue reading)

Oliver Schmidt | 1 Apr 2007 22:39
Picon

contiki-2.x/platform/minimal-net/net wpcap-service.c, 1.2, NONE wpcap-service.h, 1.2, NONE wpcap.c, 1.1, NONE wpcap.h, 1.1, NONE

Update of /cvsroot/contiki/contiki-2.x/platform/minimal-net/net
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv11855

Removed Files:
	wpcap-service.c wpcap-service.h wpcap.c wpcap.h 
Log Message:
Moved wpcap*.[ch] from platform/minimal-net/net to cpu/native/net.

--- wpcap-service.h DELETED ---

--- wpcap-service.c DELETED ---

--- wpcap.c DELETED ---

--- wpcap.h DELETED ---

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
Oliver Schmidt | 1 Apr 2007 22:39
Picon

contiki-2.x/cpu/native/net wpcap-service.c, NONE, 1.1 wpcap-service.h, NONE, 1.1 wpcap.c, NONE, 1.1 wpcap.h, NONE, 1.1

Update of /cvsroot/contiki/contiki-2.x/cpu/native/net
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv12032

Added Files:
	wpcap-service.c wpcap-service.h wpcap.c wpcap.h 
Log Message:
Moved wpcap*.[ch] from platform/minimal-net/net to cpu/native/net.

--- NEW FILE: wpcap-service.h ---
/*
 * Copyright (c) 2007, Swedish Institute of Computer Science.
 * All rights reserved. 
 *
 * Redistribution and use in source and binary forms, with or without 
 * modification, are permitted provided that the following conditions 
 * are met: 
 * 1. Redistributions of source code must retain the above copyright 
 *    notice, this list of conditions and the following disclaimer. 
 * 2. Redistributions in binary form must reproduce the above copyright 
 *    notice, this list of conditions and the following disclaimer in the 
 *    documentation and/or other materials provided with the distribution. 
 * 3. Neither the name of the Institute nor the names of its contributors 
 *    may be used to endorse or promote products derived from this software 
 *    without specific prior written permission. 
 *
 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
(Continue reading)

Oliver Schmidt | 1 Apr 2007 23:05
Picon

contiki-2.x/platform/netsim/net ethernode-uip.c, 1.4, 1.5

Update of /cvsroot/contiki/contiki-2.x/platform/netsim/net
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv21558/net

Modified Files:
	ethernode-uip.c 
Log Message:
Added Cygwin networking support using WinPcap.

Index: ethernode-uip.c
===================================================================
RCS file: /cvsroot/contiki/contiki-2.x/platform/netsim/net/ethernode-uip.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** ethernode-uip.c	27 Mar 2007 21:47:18 -0000	1.4
--- ethernode-uip.c	1 Apr 2007 21:05:17 -0000	1.5
***************
*** 40,44 ****
--- 40,48 ----
  #include "net/uip-fw.h"
  #include "net/hc.h"
+ #ifdef __CYGWIN__
+ #include "net/wpcap.h"
+ #else
  #include "net/tapdev.h"
+ #endif

  #include "node-id.h"
***************
*** 77,81 ****
(Continue reading)

Oliver Schmidt | 1 Apr 2007 23:05
Picon

contiki-2.x/platform/netsim Makefile.netsim, 1.9, 1.10 contiki-main.c, 1.12, 1.13

Update of /cvsroot/contiki/contiki-2.x/platform/netsim
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv21558

Modified Files:
	Makefile.netsim contiki-main.c 
Log Message:
Added Cygwin networking support using WinPcap.

Index: contiki-main.c
===================================================================
RCS file: /cvsroot/contiki/contiki-2.x/platform/netsim/contiki-main.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** contiki-main.c	29 Mar 2007 22:24:47 -0000	1.12
--- contiki-main.c	1 Apr 2007 21:05:17 -0000	1.13
***************
*** 42,47 ****
  #include "net/rime.h"

! #include "net/tapdev.h"
  #include "net/tapdev-service.h"
  #include "net/ethernode-uip.h"
  #include "net/ethernode-rime.h"
--- 42,50 ----
  #include "net/rime.h"

! #ifdef __CYGWIN__
! #include "net/wpcap-service.h"
! #else
(Continue reading)

Oliver Schmidt | 1 Apr 2007 23:06
Picon

contiki-2.x/cpu/native/net wpcap-service.c, 1.1, 1.2

Update of /cvsroot/contiki/contiki-2.x/cpu/native/net
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv21951

Modified Files:
	wpcap-service.c 
Log Message:
Added Cygwin networking support using WinPcap.

Index: wpcap-service.c
===================================================================
RCS file: /cvsroot/contiki/contiki-2.x/cpu/native/net/wpcap-service.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** wpcap-service.c	1 Apr 2007 20:39:38 -0000	1.1
--- wpcap-service.c	1 Apr 2007 21:06:30 -0000	1.2
***************
*** 38,50 ****
  #define BUF ((struct uip_eth_hdr *)&uip_buf[0])

! static u8_t output(void);

! SERVICE(wpcap_service, packet_service, { output });

  PROCESS(wpcap_process, "WinPcap driver");

  /*---------------------------------------------------------------------------*/
! static u8_t
! output(void)
  {
(Continue reading)

Fredrik Österlind | 2 Apr 2007 10:47
Picon

contiki-2.x/platform/cooja/sys cooja_mtarch.c, 1.4, 1.5

Update of /cvsroot/contiki/contiki-2.x/platform/cooja/sys
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv17571/platform/cooja/sys

Modified Files:
	cooja_mtarch.c 
Log Message:
new mulithreading switch function.

should work on both linux and win32 platforms

Index: cooja_mtarch.c
===================================================================
RCS file: /cvsroot/contiki/contiki-2.x/platform/cooja/sys/cooja_mtarch.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** cooja_mtarch.c	6 Nov 2006 22:25:12 -0000	1.4
--- cooja_mtarch.c	2 Apr 2007 08:47:28 -0000	1.5
***************
*** 1,8 ****
  /*
!  * This file is ripped from x86/mtarch.c of the Contiki Multi-threading library.
!  * Fredrik Osterlind <fros@...>
   */

  #include <stdio.h>
  #include "sys/cooja_mt.h"

--- 1,37 ----
  /*
(Continue reading)

Fredrik Österlind | 2 Apr 2007 11:07
Picon

contiki-2.x/platform/cooja Makefile.cooja, 1.12, 1.13

Update of /cvsroot/contiki/contiki-2.x/platform/cooja
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv25033/platform/cooja

Modified Files:
	Makefile.cooja 
Log Message:
automatically generating cooja.jar 

Index: Makefile.cooja
===================================================================
RCS file: /cvsroot/contiki/contiki-2.x/platform/cooja/Makefile.cooja,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** Makefile.cooja	25 Mar 2007 18:22:41 -0000	1.12
--- Makefile.cooja	2 Apr 2007 09:07:30 -0000	1.13
***************
*** 24,29 ****
  ifndef TYPEID
  ### Quickstart simulator
! $(MAKECMDGOALS):
  	java -jar $(CONTIKI)/tools/cooja/dist/cooja.jar -quickstart=$(MAKECMDGOALS).c -contiki=$(CONTIKI)
  endif

--- 24,33 ----
  ifndef TYPEID
  ### Quickstart simulator
! $(MAKECMDGOALS): $(CONTIKI)/tools/cooja/dist/cooja.jar
  	java -jar $(CONTIKI)/tools/cooja/dist/cooja.jar -quickstart=$(MAKECMDGOALS).c -contiki=$(CONTIKI)
+ 
(Continue reading)

Adam Dunkels | 2 Apr 2007 11:51
Picon

contiki-2.x/core/net/rime rudolph0.c, 1.3, 1.4 rudolph0.h, 1.2, 1.3 rudolph1.c, 1.5, 1.6 rudolph1.h, 1.2, 1.3

Update of /cvsroot/contiki/contiki-2.x/core/net/rime
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv8884

Modified Files:
	rudolph0.c rudolph0.h rudolph1.c rudolph1.h 
Log Message:
Made send intervals configurable when sending a new file

Index: rudolph1.h
===================================================================
RCS file: /cvsroot/contiki/contiki-2.x/core/net/rime/rudolph1.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** rudolph1.h	31 Mar 2007 18:31:28 -0000	1.2
--- rudolph1.h	2 Apr 2007 09:51:45 -0000	1.3
***************
*** 86,89 ****
--- 86,90 ----
    const struct rudolph1_callbacks *cb;
    struct ctimer t;
+   clock_time_t send_interval;
    u16_t chunk;
    u8_t version;
***************
*** 95,99 ****
  		   const struct rudolph1_callbacks *cb);
  void rudolph1_close(struct rudolph1_conn *c);
! void rudolph1_send(struct rudolph1_conn *c);
  void rudolph1_stop(struct rudolph1_conn *c);
(Continue reading)


Gmane