Skip to content

Commit

Permalink
add Agent AP MLD Configuration TLV to wsc message
Browse files Browse the repository at this point in the history
  • Loading branch information
giuseppe-lamarca-2312410 committed Jan 17, 2025
1 parent 30731f9 commit b84b6fa
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/em/config/em_configuration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1839,6 +1839,15 @@ int em_configuration_t::create_autoconfig_wsc_m2_msg(unsigned char *buff, em_hau
tmp += (sizeof(em_tlv_t) + sz);
len += (sizeof(em_tlv_t) + sz);

// ap mld tlv 17.2.96
tlv = (em_tlv_t *)tmp;
tlv->type = em_tlv_type_ap_mld_config;
sz = create_ap_mld_config_tlv(tlv->value);
tlv->len = htons(sz);

tmp += (sizeof(em_tlv_t) + sz);
len += (sizeof(em_tlv_t) + sz);


// End of message
tlv = (em_tlv_t *)tmp;
Expand Down

0 comments on commit b84b6fa

Please sign in to comment.