[ns] Packet format issue

2013-05-02 Thread jose nmrd
hi everyone, is it correct (doesn't induce to errors) to put a dynamic structure in a packet header, for example in AODV request header put a pointer to a structure str {node_energy, next} to record the nodes energy along the request path? thx in advance.

[ns] CFP: 11th Jornadas de Ingenieria Telematica (JITEL 2013)

2013-05-02 Thread Jaime Lloret Mauri
[Apologies if you receive multiple copies of this message] CALL FOR PAPERS ** 11th Jornadas de Ingeniería Telemática (JITEL 2013) Granada, Spain October 28 - 30, 2013 http://www.jitel.org Paper submission due: May 10, 2013

[ns] cplot.tcl and gnuplot

2013-05-02 Thread Sailu D
hello , i want to plot graphs from the results i got using throughput.awk i found throughput and these are stored in n1 file using this n1 how can i plot graph in gnuplot ? there are files cplot.tcl and gnuplot.pl in ns-2.35 bin folder . But i dont know how to execute them . Can any one ple

[ns] about setdest

2013-05-02 Thread Sailu D
hello , can any one please help me about how to cal the setdest inside tcl script that is , i want to write "setdest -v 1 -n 10 -p 20 -M 20 -t 60 -x 40 -y 40 > filename " inside tcl... what is the exact way i can put this up in ? thanks in advance .

[ns] finding consecutive collisions

2013-05-02 Thread nishil dahin
hello, I was trying to find the number of consecutive collisions in wireless network with the following logic: int collision = 0; while (rx_state_ == MAC_COLL) { collision++; } return collision; the problem is I think the above code results in infinite loop; Any help will be appreciated. Nihad