Update of /cvsroot/playerstage/code/player/server/drivers/wifi
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10464/player/server/drivers/wifi

Modified Files:
        aodv.cc iwspy.cc linuxwifi.cc 
Log Message:
applied Toby's autopointer patches

Index: aodv.cc
===================================================================
RCS file: /cvsroot/playerstage/code/player/server/drivers/wifi/aodv.cc,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** aodv.cc     1 Mar 2007 20:41:47 -0000       1.10
--- aodv.cc     23 Aug 2007 19:58:48 -0000      1.11
***************
*** 187,191 ****
  
    // Copy data to the server's buffer
!   Publish(device_addr, NULL, PLAYER_MSGTYPE_DATA, PLAYER_WIFI_DATA_STATE, 
&data, sizeof(data), NULL);
  
  
--- 187,191 ----
  
    // Copy data to the server's buffer
!   Publish(device_addr, PLAYER_MSGTYPE_DATA, PLAYER_WIFI_DATA_STATE, &data, 
sizeof(data), NULL);
  
  

Index: linuxwifi.cc
===================================================================
RCS file: /cvsroot/playerstage/code/player/server/drivers/wifi/linuxwifi.cc,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** linuxwifi.cc        20 Aug 2007 06:37:30 -0000      1.17
--- linuxwifi.cc        23 Aug 2007 19:58:48 -0000      1.18
***************
*** 111,115 ****
  
    // MessageHandler
!   int ProcessMessage(MessageQueue* resp_queue, player_msghdr * hdr, void * 
data);
  
  
--- 111,115 ----
  
    // MessageHandler
!   int ProcessMessage(QueuePointer & resp_queue, player_msghdr * hdr, void * 
data);
  
  
***************
*** 270,274 ****
  }
  
! int LinuxWiFi::ProcessMessage(MessageQueue * resp_queue, player_msghdr * hdr, 
void * data)
  {
        assert(hdr);
--- 270,274 ----
  }
  
! int LinuxWiFi::ProcessMessage(QueuePointer & resp_queue, player_msghdr * hdr, 
void * data)
  {
        assert(hdr);
***************
*** 439,443 ****
    wifi_data.qual_type = qual_type;
  
!   Publish(device_addr, NULL, 
PLAYER_MSGTYPE_DATA,PLAYER_WIFI_DATA_STATE,(void*)&wifi_data, 
sizeof(player_wifi_data_t),NULL);
  }
  
--- 439,443 ----
    wifi_data.qual_type = qual_type;
  
!   Publish(device_addr, 
PLAYER_MSGTYPE_DATA,PLAYER_WIFI_DATA_STATE,(void*)&wifi_data, 
sizeof(player_wifi_data_t),NULL);
  }
  

Index: iwspy.cc
===================================================================
RCS file: /cvsroot/playerstage/code/player/server/drivers/wifi/iwspy.cc,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** iwspy.cc    1 Mar 2007 20:41:47 -0000       1.20
--- iwspy.cc    23 Aug 2007 19:58:48 -0000      1.21
***************
*** 304,308 ****
  
      // Send data
!     this->Publish(this->device_addr,NULL,PLAYER_MSGTYPE_DATA,
                    PLAYER_WIFI_DATA_STATE, &data, sizeof(data), &time);
    }
--- 304,308 ----
  
      // Send data
!     this->Publish(this->device_addr,PLAYER_MSGTYPE_DATA,
                    PLAYER_WIFI_DATA_STATE, &data, sizeof(data), &time);
    }


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Playerstage-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/playerstage-commit

Reply via email to