/**
  * Announces amount of transmitted data to the DeviceManager
  *
  * @param int           $datacounter
  *
  * @access public
  * @return boolean
  */
 public function SentData($datacounter)
 {
     // TODO save this somewhere
     $this->incomingData = Request::GetContentLength();
     $this->outgoingData = $datacounter;
 }