Spam detection software, running on the system "mail.Millennium.Berkeley.EDU", 
has
identified this incoming email as possible spam.  The original message
has been attached to this so you can view it (if it isn't spam) or label
similar future email.  If you have any questions, see
the administrator of that system for details.

Content preview:  Hello,I am working on Network coding in which when ever two
   messages comes in buffer it XOR them.But i am recieving error invalid 
operands
   to binary ^ I am writing my program here any one please help me ..thanks
  in advance I am writing my code here.. [...] 

Content analysis details:   (3.8 points, 3.3 required)

 pts rule name              description
---- ---------------------- --------------------------------------------------
 3.2 FH_DATE_PAST_20XX      The date is grossly in the future.
 0.0 HTML_MESSAGE           BODY: HTML included in message
-0.7 BAYES_20               BODY: Bayesian spam probability is 5 to 20%
                            [score: 0.1075]
 1.1 DNS_FROM_OPENWHOIS     RBL: Envelope sender listed in bl.open-whois.org.
 2.0 RCVD_IN_BL_SPAMCOP_NET RBL: Received via a relay in bl.spamcop.net
                [Blocked - see <http://www.spamcop.net/bl.shtml?65.54.190.61>]
-1.8 AWL                    AWL: From: address is in the auto white-list

The original message was not completely plain text, and may be unsafe to
open with some email clients; in particular, it may contain a virus,
or confirm that your address can receive spam.  If you wish to view
it, it may be safer to save it to a file and open it with an editor.

--- Begin Message ---
Hello,I am working on Network coding in which when ever two messages comes in 
buffer it XOR them.But i am recieving error
invalid operands to binary ^
I am writing my program here any one please help me ..thanks in advance I am 
writing my code here..



 implementation{  message_t  radioQueueBufs[2],lineaBufs[2];               
//RADIO_QUEUE_LENGTH=2  message_t  *radioQueue[2];  message_t  *linea[2];  
message_t  *lineb[2];  message_t  linec[2];  uint8_t    radioIn, radioOut;  
bool       radioBusy, radioFull;
void failBlink() {    call Leds.led0Toggle();} event void Boot.booted() {    
uint8_t i;
    for (i = 0; i <= 1; i++)                    //Define RadioQueue    
radioQueue[i] = &radioQueueBufs[i];    radioBusy = FALSE;    radioFull = TRUE; 
........................................................ task void 
radioSendTask(); event message_t *RadioReceive.receive[am_id_t id](message_t 
*msg,void *payload,uint8_t len) {     message_t  *ret=msg;        if 
(!radioFull) {         ret=radioQueue[radioIn];        radioQueue[radioIn] = 
msg;              if(++radioIn >= 2)            radioIn = 0;            }post 
radioSendTask();    return ret;    }   
task void radioSendTask() {    uint8_t len;    message_t* msg;          if 
(radioIn == radioOut && !radioFull)  {                 return;       
}linea[radioOut]=radioQueue[0]  ;lineb[radioOut]=radioQueue[1] 
;linec[radioOut]=(*linea[radioOut]) ^ (*lineb[radioOut]) ; ............/error 
here  msg=&linec[radioOut];      

      len = call RadioPacket.payloadLength(msg);    
 if (call RadioSend.send[2](AM_BROADCAST_ADDR, msg, len) == SUCCESS)   call 
Leds.led2Toggle(); ............                                       
_________________________________________________________________
Hotmail: Trusted email with Microsoft’s powerful SPAM protection.
http://clk.atdmt.com/GBL/go/210850552/direct/01/

--- End Message ---
_______________________________________________
Tinyos-help mailing list
[email protected]
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Reply via email to