Re: [ns] Makefile:73: *** missing separator. Stop

2006-05-11 Thread zze-TOUROLLE Benjamin RD-CORE-CAE
Hi Wajid, This seems to be a syntax error in your Makefile. The right syntax is: target: dep1 dep2 command These lines mean that if dep1 or dep2 files are newer than target file (or if he does not exist), then Make should regenerate the target by running the command. If no command

Re: [ns] wireless ping broadcast questions

2006-05-12 Thread zze-TOUROLLE Benjamin RD-CORE-CAE
Hi Kathy, Did you check common header fields? You have probably forgotten to specify the next hop address. For a broadcast, you have to set also these values: struct hdr_cmn* ch = HDR_CMN(pkt); ch-next_hop() = IP_BROADCAST; ch-addr_type() = NS_AF_INET; Hope it will help you. Regards