IPv6Address.h File Reference
#include <omnetpp.h>
#include <iostream>
#include <string>
#include "INETDefs.h"
Function Documentation
void doPacking |
( |
cCommBuffer * |
buf, |
|
|
const IPv6Address & |
addr | |
|
) |
| | [inline] |
00300 {
00301 buf->pack(addr.words(), 4);
00302 }
void doUnpacking |
( |
cCommBuffer * |
buf, |
|
|
IPv6Address & |
addr | |
|
) |
| | [inline] |
00305 {
00306 buf->unpack(addr.words(), 4);
00307 }
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const IPv6Address & |
ip | |
|
) |
| | [inline] |
FIXME TBD turn it into a proper class
00295 {
00296 return os << ip.str();
00297 }