rename overly verbose capwap_message_elements_ops
The struct is already conveys the scope of the operations, repeating it in the name of ops again is redundant and bloats the resulting source code. Rename the opt to shorter versions.
This commit is contained in:
@ -92,8 +92,8 @@ static void capwap_80211_wtpqos_element_free(void* data) {
|
||||
|
||||
/* */
|
||||
struct capwap_message_elements_ops capwap_element_80211_wtpqos_ops = {
|
||||
.create_message_element = capwap_80211_wtpqos_element_create,
|
||||
.parsing_message_element = capwap_80211_wtpqos_element_parsing,
|
||||
.clone_message_element = capwap_80211_wtpqos_element_clone,
|
||||
.free_message_element = capwap_80211_wtpqos_element_free
|
||||
.create = capwap_80211_wtpqos_element_create,
|
||||
.parse = capwap_80211_wtpqos_element_parsing,
|
||||
.clone = capwap_80211_wtpqos_element_clone,
|
||||
.free = capwap_80211_wtpqos_element_free
|
||||
};
|
||||
|
Reference in New Issue
Block a user