void update(const impl& x) {
     handler.update(x.handler);
     max_frame_size.update(x.max_frame_size);
     max_channels.update(x.max_channels);
     idle_timeout.update(x.idle_timeout);
     heartbeat.update(x.heartbeat);
     container_id.update(x.container_id);
     link_prefix.update(x.link_prefix);
     reconnect.update(x.reconnect);
     ssl_client_options.update(x.ssl_client_options);
     ssl_server_options.update(x.ssl_server_options);
     sasl_enabled.update(x.sasl_enabled);
     sasl_allow_insecure_mechs.update(x.sasl_allow_insecure_mechs);
     sasl_allowed_mechs.update(x.sasl_allowed_mechs);
     sasl_config_name.update(x.sasl_config_name);
     sasl_config_path.update(x.sasl_config_path);
 }
Beispiel #2
0
void Dot11::internal_add_option(const option &opt) {
    _options_size += opt.data_size() + sizeof(uint8_t) * 2;
}