|
|
| 327 |
*/ |
327 |
*/ |
| 328 |
void SendErrorRequest (DsrOptionRerrUnreachHeader &rerr, uint8_t protocol); |
328 |
void SendErrorRequest (DsrOptionRerrUnreachHeader &rerr, uint8_t protocol); |
| 329 |
/* |
329 |
/* |
| 330 |
* \brief Send the route request and increment the request count |
|
|
| 331 |
* \param the original packet |
| 332 |
* \param source address |
| 333 |
* \param destination address |
| 334 |
*/ |
| 335 |
void SendRequestAndIncrement (Ptr<Packet> packet, |
| 336 |
Ipv4Address source, |
| 337 |
Ipv4Address destination); |
| 338 |
/* |
| 339 |
* \brief Forward the route request if the node is not the destination |
330 |
* \brief Forward the route request if the node is not the destination |
| 340 |
* \param the original packet |
331 |
* \param the original packet |
| 341 |
* \param source address |
332 |
* \param source address |
|
|
| 390 |
Ipv4Address realDst, |
381 |
Ipv4Address realDst, |
| 391 |
uint8_t protocol, |
382 |
uint8_t protocol, |
| 392 |
Ptr<Ipv4Route> route); |
383 |
Ptr<Ipv4Route> route); |
| 393 |
/* |
|
|
| 394 |
* Get the node using the ip address |
| 395 |
*/ |
| 396 |
Ptr<Node> GetNodeWithAddress (Ipv4Address ipv4Address); |
| 397 |
/** |
384 |
/** |
| 398 |
* \param p packet to forward up |
385 |
* \param p packet to forward up |
| 399 |
* \param header IPv4 Header information |
386 |
* \param header IPv4 Header information |
|
|
| 423 |
IpL4Protocol::DownTargetCallback GetDownTarget (void) const; |
410 |
IpL4Protocol::DownTargetCallback GetDownTarget (void) const; |
| 424 |
IpL4Protocol::DownTargetCallback6 GetDownTarget6 (void) const; |
411 |
IpL4Protocol::DownTargetCallback6 GetDownTarget6 (void) const; |
| 425 |
/** |
412 |
/** |
| 426 |
* \brief Get the extension number. |
|
|
| 427 |
* \return extension number |
| 428 |
*/ |
| 429 |
uint8_t GetExtensionNumber () const; |
| 430 |
/** |
| 431 |
* \brief Process method |
413 |
* \brief Process method |
| 432 |
* Called from Ipv4L3Protocol::Receive. |
414 |
* Called from Ipv4L3Protocol::Receive. |
| 433 |
* |
415 |
* |