Lines Matching defs:version

6  * modify it under the terms of version 2 of the GNU General Public
81 pr_info("B.A.T.M.A.N. advanced %s (compatibility version %i) loaded\n",
377 /* packet should hold at least type and version */
399 if (batadv_ogm_packet->version != BATADV_COMPAT_VERSION) {
401 "Drop packet: incompatible batman version (%i)\n",
402 batadv_ogm_packet->version);
618 * based on the provided type and version (both need to match)
621 * @version: tvlv handler version to look for
627 uint8_t type, uint8_t version)
637 if (tvlv_handler_tmp->version != version)
664 * list based on the provided type and version (both need to match)
667 * @version: tvlv container version to look for
676 uint8_t type, uint8_t version)
684 if (tvlv_tmp->tvlv_hdr.version != version)
742 * provided type and version (both need to match)
745 * @version: tvlv container type to unregister
748 uint8_t type, uint8_t version)
753 tvlv = batadv_tvlv_container_get(bat_priv, type, version);
759 * batadv_tvlv_container_register - register tvlv type, version and content
763 * @version: tvlv container version
767 * If a container of the same type and version was already registered the new
771 uint8_t type, uint8_t version,
783 tvlv_new->tvlv_hdr.version = version;
792 tvlv_old = batadv_tvlv_container_get(bat_priv, type, version);
873 tvlv_hdr->version = tvlv->tvlv_hdr.version;
976 tvlv_hdr->version);
1035 * type and version (both need to match) for ogm tvlv payload and/or unicast
1044 * @version: tvlv handler version to be registered
1057 uint8_t type, uint8_t version, uint8_t flags)
1061 tvlv_handler = batadv_tvlv_handler_get(bat_priv, type, version);
1074 tvlv_handler->version = version;
1086 * provided type and version (both need to match)
1089 * @version: tvlv handler version to be unregistered
1092 uint8_t type, uint8_t version)
1096 tvlv_handler = batadv_tvlv_handler_get(bat_priv, type, version);
1114 * @version: tvlv version
1119 uint8_t *dst, uint8_t type, uint8_t version,
1146 unicast_tvlv_packet->version = BATADV_COMPAT_VERSION;
1156 tvlv_hdr->version = version;