bgp_mplsvpn.h
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:1k
源码类别:

网络

开发平台:

Unix_Linux

  1. /* MPLS-VPN
  2.    Copyright (C) 2000 Kunihiro Ishiguro <kunihiro@zebra.org>
  3. This file is part of GNU Zebra.
  4. GNU Zebra is free software; you can redistribute it and/or modify it
  5. under the terms of the GNU General Public License as published by the
  6. Free Software Foundation; either version 2, or (at your option) any
  7. later version.
  8. GNU Zebra is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11. General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GNU Zebra; see the file COPYING.  If not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  15. 02111-1307, USA.  */
  16. #define RD_TYPE_AS      0
  17. #define RD_TYPE_IP      1
  18. #define RD_ADDRSTRLEN  28
  19. struct rd_as
  20. {
  21.   u_int16_t type;
  22.   as_t as;
  23.   u_int32_t val;
  24. };
  25. struct rd_ip
  26. {
  27.   u_int16_t type;
  28.   struct in_addr ip;
  29.   u_int16_t val;
  30. };
  31. void bgp_mplsvpn_init ();
  32. int bgp_nlri_parse_vpnv4 (struct peer *, struct attr *, struct bgp_nlri *);
  33. u_int32_t decode_label (u_char *);
  34. int str2prefix_rd (u_char *, struct prefix_rd *);
  35. int str2tag (u_char *, u_char *);
  36. char *prefix_rd2str (struct prefix_rd *, char *, size_t);