Lines Matching defs:version

61  *  based on the provided type and version (both need to match)
64 * @version: tvlv handler version to look for
69 batadv_tvlv_handler_get(struct batadv_priv *bat_priv, u8 type, u8 version)
79 if (tvlv_handler_tmp->version != version)
120 * list based on the provided type and version (both need to match)
123 * @version: tvlv container version to look for
131 batadv_tvlv_container_get(struct batadv_priv *bat_priv, u8 type, u8 version)
141 if (tvlv_tmp->tvlv_hdr.version != version)
203 * provided type and version (both need to match)
206 * @version: tvlv container type to unregister
209 u8 type, u8 version)
214 tvlv = batadv_tvlv_container_get(bat_priv, type, version);
220 * batadv_tvlv_container_register() - register tvlv type, version and content
224 * @version: tvlv container version
228 * If a container of the same type and version was already registered the new
232 u8 type, u8 version,
244 tvlv_new->tvlv_hdr.version = version;
253 tvlv_old = batadv_tvlv_container_get(bat_priv, type, version);
338 tvlv_hdr->version = tvlv->tvlv_hdr.version;
457 tvlv_hdr->version);
519 * type and version (both need to match) for ogm tvlv payload and/or unicast
532 * @version: tvlv handler version to be registered
547 u8 type, u8 version, u8 flags)
553 tvlv_handler = batadv_tvlv_handler_get(bat_priv, type, version);
570 tvlv_handler->version = version;
585 * provided type and version (both need to match)
588 * @version: tvlv handler version to be unregistered
591 u8 type, u8 version)
595 tvlv_handler = batadv_tvlv_handler_get(bat_priv, type, version);
613 * @version: tvlv version
618 const u8 *dst, u8 type, u8 version,
644 unicast_tvlv_packet->version = BATADV_COMPAT_VERSION;
654 tvlv_hdr->version = version;