Beispiel #1
0
void Dot11ReAssocRequest::current_ap(const address_type& new_current_ap) {
    new_current_ap.copy(body_.current_ap);
}
Beispiel #2
0
void Dot11::addr1(const address_type& new_addr1) {
    new_addr1.copy(header_.addr1);
}
Beispiel #3
0
void IPv6::dst_addr(const address_type& new_dst_addr) {
    new_dst_addr.copy(header_.dst_addr);
}
Beispiel #4
0
void IPv6::src_addr(const address_type& new_src_addr) {
    new_src_addr.copy(header_.src_addr);
}
Beispiel #5
0
void EthernetII::src_addr(const address_type &new_src_addr) {
    new_src_addr.copy(_eth.src_mac);
}
Beispiel #6
0
void EthernetII::dst_addr(const address_type &new_dst_addr) {
    new_dst_addr.copy(_eth.dst_mac);
}