• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/quagga/isisd/

Lines Matching refs:vtype

114 vtype2string (enum vertextype vtype)
116 switch (vtype)
187 isis_vertex_new (void *id, enum vertextype vtype)
198 vertex->type = vtype;
199 switch (vtype)
457 isis_find_vertex (struct list *list, void *id, enum vertextype vtype)
465 if (vertex->type != vtype)
467 switch (vtype)
504 isis_spf_add2tent (struct isis_spftree *spftree, enum vertextype vtype,
515 assert (isis_find_vertex (spftree->paths, id, vtype) == NULL);
516 assert (isis_find_vertex (spftree->tents, id, vtype) == NULL);
517 vertex = isis_vertex_new (id, vtype);
571 isis_spf_add_local (struct isis_spftree *spftree, enum vertextype vtype,
577 vertex = isis_find_vertex (spftree->tents, id, vtype);
612 isis_spf_add2tent (spftree, vtype, id, cost, 1, family, adj, parent);
617 process_N (struct isis_spftree *spftree, enum vertextype vtype, void *id,
642 vertex = isis_find_vertex (spftree->paths, id, vtype);
648 vtype2string (vtype), vid2string (vertex, buff), dist);
654 vertex = isis_find_vertex (spftree->tents, id, vtype);
662 vtype2string (vtype), vid2string (vertex, buff), dist,
702 print_sys_hostname(id), vtype2string (vtype), dist,
706 isis_spf_add2tent (spftree, vtype, id, dist, depth, family, NULL, parent);
724 enum vertextype vtype;
758 vtype = LSP_PSEUDO_ID (is_neigh->neigh_id) ? VTYPE_PSEUDO_IS
760 process_N (spftree, vtype, (void *) is_neigh->neigh_id, dist,
774 vtype = LSP_PSEUDO_ID (te_is_neigh->neigh_id) ? VTYPE_PSEUDO_TE_IS
776 process_N (spftree, vtype, (void *) te_is_neigh->neigh_id, dist,
788 vtype = VTYPE_IPREACH_INTERNAL;
792 process_N (spftree, vtype, (void *) &prefix, dist, depth + 1,
802 vtype = VTYPE_IPREACH_EXTERNAL;
806 process_N (spftree, vtype, (void *) &prefix, dist, depth + 1,
819 vtype = VTYPE_IPREACH_TE;
824 process_N (spftree, vtype, (void *) &prefix, dist, depth + 1,
837 vtype = (ip6reach->control_info & CTRL_INFO_DISTRIBUTION) ?
843 process_N (spftree, vtype, (void *) &prefix, dist, depth + 1,
873 enum vertextype vtype;
899 vtype = LSP_PSEUDO_ID (is_neigh->neigh_id) ? VTYPE_PSEUDO_IS
901 process_N (spftree, vtype, (void *) is_neigh->neigh_id, dist,
911 vtype = LSP_PSEUDO_ID (te_is_neigh->neigh_id) ? VTYPE_PSEUDO_TE_IS
913 process_N (spftree, vtype, (void *) te_is_neigh->neigh_id, dist,