1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
/*
* Dibbler - a portable DHCPv6
*
* authors: Tomasz Mrugalski <thomson@klub.com.pl>
* Marek Senderski <msend@o2.pl>
*
* released under GNU GPL v2 only licence
*
*/
#include "DHCPDefaults.h"
#include "RelParsIfaceOpt.h"
TRelParsIfaceOpt::TRelParsIfaceOpt(void)
:ClientUnicast_(), ServerUnicast_(),
ClientMulticast_(false), ServerMulticast_(false),
InterfaceID_(-1) {
}
TRelParsIfaceOpt::~TRelParsIfaceOpt(void) {
}
// --- unicast ---
void TRelParsIfaceOpt::setServerUnicast(SPtr<TIPv6Addr> addr) {
ServerUnicast_ = addr;
}
SPtr<TIPv6Addr> TRelParsIfaceOpt::getServerUnicast() {
return ServerUnicast_;
}
void TRelParsIfaceOpt::setClientUnicast(SPtr<TIPv6Addr> addr) {
ClientUnicast_ = addr;
}
SPtr<TIPv6Addr> TRelParsIfaceOpt::getClientUnicast() {
return ClientUnicast_;
}
void TRelParsIfaceOpt::setClientMulticast(bool multi) {
ClientMulticast_ = multi;
}
bool TRelParsIfaceOpt::getClientMulticast() {
return ClientMulticast_;
}
void TRelParsIfaceOpt::setServerMulticast(bool multi) {
ServerMulticast_ = multi;
}
bool TRelParsIfaceOpt::getServerMulticast() {
return ServerMulticast_;
}
void TRelParsIfaceOpt::setInterfaceID(int id) {
InterfaceID_ = id;
}
int TRelParsIfaceOpt::getInterfaceID() {
return InterfaceID_;
}
|