#include <omnetpp.h>#include <iostream>#include <string>#include "INETDefs.h"Go to the source code of this file.
Classes | |
| class | IPv6Address |
Functions | |
| std::ostream & | operator<< (std::ostream &os, const IPv6Address &ip) |
| void | doPacking (cCommBuffer *buf, const IPv6Address &addr) |
| void | doUnpacking (cCommBuffer *buf, IPv6Address &addr) |
| void doPacking | ( | cCommBuffer * | buf, | |
| const IPv6Address & | addr | |||
| ) | [inline] |
Definition at line 299 of file IPv6Address.h.
{
buf->pack(addr.words(), 4);
}
| void doUnpacking | ( | cCommBuffer * | buf, | |
| IPv6Address & | addr | |||
| ) | [inline] |
Definition at line 304 of file IPv6Address.h.
{
buf->unpack(addr.words(), 4);
}
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const IPv6Address & | ip | |||
| ) | [inline] |
FIXME TBD turn it into a proper class
Definition at line 294 of file IPv6Address.h.
{
return os << ip.str();
}
1.7.1