1)<br>On the NS-2 (inside the member function OLSR::send_pkt() [in the file OLSR.cc]), <br>the bellow code lines it is present:<br> <br>   // Calculates the number of needed packets<br>   int num_pkts = (num_msgs % OLSR_MAX_MSGS == 0) ? num_msgs / OLSR_MAX_MSGS :<br>

     (num_msgs / OLSR_MAX_MSGS + 1);<br><br>The code lines above calculate the number of olsr packet is needed to sent all<br>messages. The RFC 3626 define that the maximum number of olsr message is 4 per<br>olsr packet. My question is, inside of the olsrd-0.5.6-r8, has something equal or<br>

equivalent at code lines above? The olsrd calculate the number of packet necessary<br>to sent all message?<br>